Skip to content

Commit

Permalink
Change "show track info" accelerator to ctrl+f3
Browse files Browse the repository at this point in the history
Closes #88
  • Loading branch information
shinovon committed Nov 24, 2024
1 parent 79898c9 commit 727e4ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/emulator/ui/swt/EmulatorScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -786,10 +786,10 @@ private void initMenu() {
this.captureToClipboardMenuItem.setAccelerator(65603);
this.captureToClipboardMenuItem.addSelectionListener(this);
new MenuItem(this.menuTool, 2);
(this.showTrackInfoMenuItem = new MenuItem(this.menuTool, 32)).setText(UILocale.get("MENU_TOOL_SHOW_TRACK_INFO", "Show Track Info") + "\tF3");
(this.showTrackInfoMenuItem = new MenuItem(this.menuTool, 32)).setText(UILocale.get("MENU_TOOL_SHOW_TRACK_INFO", "Show Track Info") + "\tCtrl+F3");
this.showTrackInfoMenuItem.setSelection(Settings.threadMethodTrack);
this.showTrackInfoMenuItem.addSelectionListener(this);
this.showTrackInfoMenuItem.setAccelerator(16777228);
this.showTrackInfoMenuItem.setAccelerator(SWT.CONTROL | SWT.F3);

this.canvasKeyboardMenuItem = new MenuItem(this.menuTool, 32);
canvasKeyboardMenuItem.setText(UILocale.get("MENU_TOOL_QWERTY_MODE", "QWERTY Mode"));
Expand Down

0 comments on commit 727e4ef

Please sign in to comment.