Skip to content

Commit

Permalink
Change politics shortcut on Mac to Cmd-R. (#10525)
Browse files Browse the repository at this point in the history
Cmd-P is already taken for focusing the players tab.
  • Loading branch information
asvitkine authored May 29, 2022
1 parent de93fc0 commit c596ae3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private void addPoliticsMenu() {
}));
politicsMenuItem.setMnemonic(KeyEvent.VK_P);
// On Mac, Cmd-W is the standard "close window" shortcut, which we use for "Leave Game".
final int keyCode = (SystemProperties.isMac() ? KeyEvent.VK_P : KeyEvent.VK_W);
final int keyCode = (SystemProperties.isMac() ? KeyEvent.VK_R : KeyEvent.VK_W);
politicsMenuItem.setAccelerator(
KeyStroke.getKeyStroke(keyCode, Toolkit.getDefaultToolkit().getMenuShortcutKeyMaskEx()));
}
Expand Down

0 comments on commit c596ae3

Please sign in to comment.