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

Accordion : artifact in title after rotate accordion

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P3 P3
    • 8
    • 8
    • javafx
    • jdk 1.8.0-ea-b56

      Run this code :
      @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(100, 100);
              accordion.setExpandedPane(pane2);
              accordion.getPanes().addAll(pane1, pane2);
              root.setCenter(accordion);
              Slider slider = new Slider(0, 360, 10);
              slider.setValue(45);
              accordion.rotateProperty().bindBidirectional(slider.valueProperty());
              root.setTop(slider);
              
              Scene scene = new Scene(root, 300, 300);
              stage.setScene(scene);
              stage.show();
              stage.setTitle(VersionInfo.getRuntimeVersion());
          }

            msoch Martin Ĺ och (Inactive)
            slugovoy Sergey Lugovoy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: