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

Accordion: when pane content is open, shadow not visible

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P3 P3
    • None
    • 8
    • javafx
    • jdk 1.8b58

      When if open pane content - shadow not visible.
      @Override
          public void start(Stage stage) throws Exception {
              BorderPane root = new BorderPane();
              final Accordion pane = new Accordion();
              pane.getPanes().add(new TitledPane("Title 1", new Label("Test")));
              pane.getPanes().add(new TitledPane("Title 2", new Label("Test 2")));
              pane.getPanes().get(0).setCollapsible(true);
              pane.setStyle(style);
              pane.setPrefSize(100, 100);
              pane.setMaxSize(100, 100);
              root.setCenter(HBoxBuilder.create().spacing(15).children(pane).build());
              Scene scene = new Scene(root, 400, 400);
              stage.setScene(scene);
              stage.show();
          }

        1. accordion-open.png
          28 kB
          Sergey Lugovoy
        2. accordion-closed.png
          15 kB
          Sergey Lugovoy

            raginip Ragini Prasad (Inactive)
            slugovoy Sergey Lugovoy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: