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

ColorPicker: Label is visible after set style "-fx-color-label-visible:false" when control without focus

    XMLWordPrintable

Details

    • Bug
    • Resolution: Duplicate
    • P3
    • None
    • 8
    • javafx
    • jdk 8.0 b99 Linux

    Description

      Code to reprocude :

      @Override
          public void start(Stage stage) throws Exception {
              BorderPane root = new BorderPane();
              ColorPicker picker = new ColorPicker();
              picker.setStyle("-fx-color-label-visible:false;");
              VBox panel = new VBox(30);
              panel.getChildren().addAll(new Button("Button"), picker);
              root.setCenter(panel);
              Scene scene = new Scene(root, 600, 300);
              stage.setScene(scene);
              stage.setTitle(VersionInfo.getRuntimeVersion());
              stage.show();
          }

      Attachments

        Activity

          People

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

            Dates

              Created:
              Updated:
              Resolved:
              Imported: