Skip to content

Commit c763f75

Browse files
Fix regression due to typo
1 parent cda39d8 commit c763f75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

richtextfx/src/main/java/org/fxmisc/richtext/CustomCssMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class CustomCssMetaData<S extends Styleable, V> extends CssMetaData<S, V>
2020

2121
@Override
2222
public boolean isSettable(S styleable) {
23-
return property.apply(styleable).isBound();
23+
return !property.apply(styleable).isBound();
2424
}
2525

2626
@Override

0 commit comments

Comments
 (0)