-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
8
Text title in TItledPane render incorrectly in contrast 2.2 (see screenshots)
@Override
public void start(Stage stage) throws Exception {
BorderPane root = new BorderPane();
Accordion accordion = new Accordion();
TitledPane pane1 = TitledPaneBuilder.create().text("123456789").content(new Label("Text")).build();
TitledPane pane2 = TitledPaneBuilder.create().text("Title 2").content(new Label("Text")).build();
accordion.setMaxSize(50, 50);
accordion.getPanes().addAll(pane1, pane2);
accordion.setStyle("-fx-border-color: red;-fx-border-insets: 20;");
root.setCenter(accordion);
Scene scene = new Scene(root, 500, 500);
stage.setScene(scene);
stage.show();
stage.setTitle(VersionInfo.getRuntimeVersion());
}
@Override
public void start(Stage stage) throws Exception {
BorderPane root = new BorderPane();
Accordion accordion = new Accordion();
TitledPane pane1 = TitledPaneBuilder.create().text("123456789").content(new Label("Text")).build();
TitledPane pane2 = TitledPaneBuilder.create().text("Title 2").content(new Label("Text")).build();
accordion.setMaxSize(50, 50);
accordion.getPanes().addAll(pane1, pane2);
accordion.setStyle("-fx-border-color: red;-fx-border-insets: 20;");
root.setCenter(accordion);
Scene scene = new Scene(root, 500, 500);
stage.setScene(scene);
stage.show();
stage.setTitle(VersionInfo.getRuntimeVersion());
}
- blocks
-
JDK-8096045 Accordion : border paint incorrectly
- Closed
- relates to
-
JDK-8125300 [Label] Wrap doesn't work.
- Closed