Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8097186

Accordion : problems with border-insets

XMLWordPrintable

      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());
          }

            jgiles Jonathan Giles
            slugovoy Sergey Lugovoy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: