ImageView.java:
@Styleable(property="image", converter="com.sun.javafx.css.converters.URLConverter")
should be
@Styleable(property="-fx-image", converter="com.sun.javafx.css.converters.URLConverter")
TilePane.java:
@Styleable(property="-fx-alignment", initial="left")
should be
@Styleable(property="-fx-alignment", initial="top-left")
VBox.java:
@Styleable(property="-fx-alignment", initial="left")
should be
@Styleable(property="-fx-alignment", initial="top-left")
Shape.java
@Styleable(property="-fx-stroke", initial="black")
should be
@Styleable(property="-fx-stroke")
@Styleable(property="image", converter="com.sun.javafx.css.converters.URLConverter")
should be
@Styleable(property="-fx-image", converter="com.sun.javafx.css.converters.URLConverter")
TilePane.java:
@Styleable(property="-fx-alignment", initial="left")
should be
@Styleable(property="-fx-alignment", initial="top-left")
VBox.java:
@Styleable(property="-fx-alignment", initial="left")
should be
@Styleable(property="-fx-alignment", initial="top-left")
Shape.java
@Styleable(property="-fx-stroke", initial="black")
should be
@Styleable(property="-fx-stroke")
- blocks
-
JDK-8112853 ImageView doesn't load Image from style sheet
-
- Closed
-
-
JDK-8101118 Image View css class -fx-image
-
- Closed
-