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

MenuBar doesn't receive focus on TAB press

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • 9
    • 8
    • javafx
    • 8.0b104

      Run the code:

          @Override
          public void start(Stage stage) throws Exception {
              VBox root = new VBox();
              root.getChildren().addAll(
                      MenuBarBuilder.create().menus(
                      MenuBuilder.create().text("File").items(MenuItemBuilder.create().text("New").build()).build(),
                      MenuBuilder.create().text("Help").items(MenuItemBuilder.create().text("About").build()).build()).build(), new Button("Button"));
              Scene scene = new Scene(root, 500, 500);
              stage.setScene(scene);
              stage.show();
              stage.setTitle(VersionInfo.getRuntimeVersion());
          }

      Click the button
      Press the TAB key
      Focus is on the button still.

            psomashe Parvathi Somashekar (Inactive)
            akirov Alexander Kirov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: