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

Accordion : border paint incorrectly

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P5 P5
    • 9
    • 8
    • javafx
    • 2.2 and 8.0

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

        1. snapshot10.png
          snapshot10.png
          11 kB
        2. snapshot8.png
          snapshot8.png
          12 kB
        3. snapshot9.png
          snapshot9.png
          12 kB

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

              Created:
              Updated:
              Resolved:
              Imported: