Skip to content

Commit

Permalink
Update another RichTextFX-specific CSS property to use the -rtfx pref…
Browse files Browse the repository at this point in the history
…ix; "-fill" reverted back to "-color"

Note: "-fill" was initially used  instead of "-color" because of JDK-8133685. Now that a different prefix is used, this is no longer necessary
  • Loading branch information
JordanMartinez committed Jun 10, 2016
1 parent 8459717 commit 20c8cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion richtextfx/src/main/java/org/fxmisc/richtext/TextExt.java
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public ObjectProperty<Paint> backgroundFillProperty() {
private static class StyleableProperties {

private static final CssMetaData<TextExt, Paint> BACKGROUND_FILL = new CssMetaData<TextExt, Paint>(
"-fx-background-fill",
"-rtfx-background-color",
StyleConverter.getPaintConverter(),
Color.TRANSPARENT) {
@Override
Expand Down

0 comments on commit 20c8cce

Please sign in to comment.