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

Menu mnemonics incorrect behavior

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 8u60, 9
    • javafx
    • generic
    • generic

      Reproducible: always
      Is a regression: no
      Platform-specific: no
      Steps to reproduce (sample attached):
      1. Create application with menubar and menu
      2. Add hotkey to that menubar
      3. Press and don't release ALT+KEY (or other hotkey) to activate the menu

      Expected behavior (as native applications): Menu is displayed and remains visible.
      Actual behavior: Menu becomes visible for a couple of seconds and hides until hotkey is released.

      Sample:

      import javafx.application.Application;
      import javafx.scene.Scene;
      import javafx.scene.control.Menu;
      import javafx.scene.control.MenuBar;
      import javafx.scene.layout.BorderPane;
      import javafx.stage.Stage;

      public class MnemonicsFail extends Application{
          
          public static void main(String[] args) {
              launch(args);
          }

          @Override
          public void start(Stage primaryStage) throws Exception {
               MenuBar bar = new MenuBar();
               Menu root = new Menu("_A menu", null, new Menu("B"), new Menu("C"));
               Menu second = new Menu ("_Other", null, new Menu("Submenu"));
               root.setMnemonicParsing(true);
               second.setMnemonicParsing(true);
               bar.getMenus().addAll(root, second);
               BorderPane pane = new BorderPane();
               pane.setTop(bar);
               primaryStage.setScene(new Scene(pane, 300, 300));
               primaryStage.show();
          }
      }

            Unassigned Unassigned
            arusakov Andrey Rusakov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: