-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
8
-
linux, jdk 1.8.0-ea-b56, SWPipeline
Run this code -
@Override
public void start(Stage stage) throws Exception {
BorderPane root = new BorderPane();
Button button = new Button("Button");
button.setFocusTraversable(false);
root.setCenter(button);
Slider slider = new Slider(0,360,10);
slider.setValue(45);
button.rotateProperty().bindBidirectional(slider.valueProperty());
root.setTop(slider);
Scene scene = new Scene(root, 300, 300);
stage.setScene(scene);
stage.setTitle(VersionInfo.getRuntimeVersion());
stage.show();
}
@Override
public void start(Stage stage) throws Exception {
BorderPane root = new BorderPane();
Button button = new Button("Button");
button.setFocusTraversable(false);
root.setCenter(button);
Slider slider = new Slider(0,360,10);
slider.setValue(45);
button.rotateProperty().bindBidirectional(slider.valueProperty());
root.setTop(slider);
Scene scene = new Scene(root, 300, 300);
stage.setScene(scene);
stage.setTitle(VersionInfo.getRuntimeVersion());
stage.show();
}