package bug; import javafx.application.Application; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.control.Accordion; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.TitledPane; import javafx.scene.layout.HBox; import javafx.scene.paint.Color; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; public class Bug extends Application { /** * The main() method is ignored in correctly deployed JavaFX application. * main() serves only as fallback in case the application can not be * launched through deployment artifacts, e.g., in IDEs with limited FX * support. NetBeans ignores main(). * * @param args the command line arguments */ public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) throws Exception { Button left = new Button("Left"); Button right = new Button("Right"); HBox box = new HBox(); box.getChildren().addAll(left,createControl(),right); Scene scene = new Scene(box,300,300); stage.setScene(scene); stage.show(); } public Node createControl() { TitledPane pane1 = new TitledPane(); pane1.setGraphic(new Label("title 1\nLong text long text")); pane1.setContent(new Rectangle(100, 40, Color.SKYBLUE)); TitledPane pane2 = new TitledPane(); pane2.setGraphic(new Label("title 2\nLong text long text")); pane2.setContent(new Rectangle(100, 40, Color.BLUEVIOLET)); Accordion acc = new Accordion(); acc.getPanes().addAll(pane1, pane2); acc.setExpandedPane(pane2); pane2.setAnimated(false); acc.setFocusTraversable(false); return acc; } }