From 8ec56390c4d90fbe79cca3de214b649149a49aef Mon Sep 17 00:00:00 2001 From: jacobherrington Date: Sat, 29 Sep 2018 22:37:04 -0500 Subject: [PATCH] Change Toggle Editor Mode hotkey on OS X By default the Toggle Editor Mode hotkey was set to Command + M, which is a great and mnemonic hotkey. Unfortunately that hotkey is also the hotkey to minimize an application. This commit changes the default Toggle Editor Mode hotkey to Command + Option + M on OS X, which will not minimize the window and maintains the mnemonic pattern. --- browser/main/lib/ConfigManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/main/lib/ConfigManager.js b/browser/main/lib/ConfigManager.js index 2c601b57..0000d993 100644 --- a/browser/main/lib/ConfigManager.js +++ b/browser/main/lib/ConfigManager.js @@ -24,7 +24,7 @@ export const DEFAULT_CONFIG = { amaEnabled: true, hotkey: { toggleMain: OSX ? 'Command + Alt + L' : 'Super + Alt + E', - toggleMode: OSX ? 'Command + M' : 'Ctrl + M' + toggleMode: OSX ? 'Command + Option + M' : 'Ctrl + M' }, ui: { language: 'en',