-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
8
-
jdk 8b95 linux D3D pipeline
@Override
public void start(Stage stage) throws Exception {
HBox root = new HBox(30);
Pagination p = new Pagination(20, 5);
p.getStyleClass().add(Pagination.STYLE_CLASS_BULLET);
root.getChildren().add(p);
Pagination p2 = new Pagination(20, 5);
root.getChildren().add(p2);
Scene scene = new Scene(root, 300, 300);
stage.setScene(scene);
stage.setTitle(VersionInfo.getRuntimeVersion());
stage.show();
}
public void start(Stage stage) throws Exception {
HBox root = new HBox(30);
Pagination p = new Pagination(20, 5);
p.getStyleClass().add(Pagination.STYLE_CLASS_BULLET);
root.getChildren().add(p);
Pagination p2 = new Pagination(20, 5);
root.getChildren().add(p2);
Scene scene = new Scene(root, 300, 300);
stage.setScene(scene);
stage.setTitle(VersionInfo.getRuntimeVersion());
stage.show();
}
- relates to
-
JDK-8123244 Next and previous button of pagination is not visible
-
- Closed
-