-
Bug
-
Resolution: Fixed
-
P3
-
fx2.0
The font property of text node should be inherit by default like Label. So in code this:
@Styleable(property="-fx-font")
private ObjectProperty<Font> font;
should be this
@Styleable(property="-fx-font", inherits=true)
private ObjectProperty<Font> font;
@Styleable(property="-fx-font")
private ObjectProperty<Font> font;
should be this
@Styleable(property="-fx-font", inherits=true)
private ObjectProperty<Font> font;
- duplicates
-
JDK-8113923 CSS: scene's font is not inherited
-
- Closed
-