MenuBar doesn't receive focus on TAB press

XMLWordPrintable

    • Type: Bug
    • Resolution: Not an Issue
    • Priority: P4
    • 9
    • Affects Version/s: 8
    • Component/s: javafx
    • Environment:

      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.

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

              Created:
              Updated:
              Resolved:
              Imported: