If set accordion max size - height take incorrectly.
@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());
}
- is blocked by
- 
                    JDK-8097186 Accordion : problems with border-insets -           
- Closed
 
-         
 P5
  P5                     

