-
Type:
Bug
-
Resolution: Cannot Reproduce
-
Priority:
P4
-
None
-
Affects Version/s: fx2.0
-
Component/s: javafx
-
Environment:
java.vendor=Sun Microsystems Inc.
java.version=1.6.0_24
java.vm.vendor=Sun Microsystems Inc.
java.vm.version=19.1-b02
os.name=Windows 7
os.arch=x86
os.version=6.1JavaFX 2.0ea b18
I've a GridPane with a style class "form"
gridPane.getStyleClass().add("form");
and this style sheet information:
.form {
-fx-node-hpos: right;
-fx-node-vpos: bottom;
-fx-hgap: 20;
-fx-vgap: 20;
}
If I switch to the style sheet the hgap and vgap works, but -fx-node-hpos and -fx-node-vpos has no effect.
gridPane.getStyleClass().add("form");
and this style sheet information:
.form {
-fx-node-hpos: right;
-fx-node-vpos: bottom;
-fx-hgap: 20;
-fx-vgap: 20;
}
If I switch to the style sheet the hgap and vgap works, but -fx-node-hpos and -fx-node-vpos has no effect.