diff --git a/desktop/main.js b/desktop/main.js index e4ee6e613450..c2b537e48d4d 100644 --- a/desktop/main.js +++ b/desktop/main.js @@ -103,7 +103,7 @@ const updateAppMenuItem = new MenuItem({ // Defines the system-level menu item for opening keyboard shortcuts modal const keyboardShortcutsMenu = new MenuItem({ label: 'View Keyboard Shortcuts', - accelerator: 'CmdOrCtrl+?', + accelerator: 'CmdOrCtrl+I', }); // Actual auto-update listeners diff --git a/src/CONST.js b/src/CONST.js index b6f2d53bd9f4..f9d4d365cdaa 100755 --- a/src/CONST.js +++ b/src/CONST.js @@ -152,7 +152,7 @@ const CONST = { }, SHORTCUT_MODAL: { descriptionKey: 'openShortcutDialog', - shortcutKey: '?', + shortcutKey: 'I', modifiers: ['CTRL'], }, ESCAPE: { diff --git a/src/libs/KeyboardShortcut/index.js b/src/libs/KeyboardShortcut/index.js index b400aca82d60..8bb508a3e493 100644 --- a/src/libs/KeyboardShortcut/index.js +++ b/src/libs/KeyboardShortcut/index.js @@ -104,8 +104,6 @@ function getKeyCode(key) { return 13; case 'Escape': return 27; - case '?': - return 191; default: return key.charCodeAt(0); }