From 859d9763e92d26816e85441298834cbea72639d4 Mon Sep 17 00:00:00 2001 From: Rose Robertson Date: Thu, 21 Jan 2016 14:31:18 -0800 Subject: [PATCH] :memo: Use correct shortcut for 'Hide Others' menu item example As per https://support.apple.com/en-gb/HT201236, the correct keyboard shortcut for hiding all but the current window is Command-Option(Alt)-H. --- docs/api/menu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/menu.md b/docs/api/menu.md index 3806914..49c4ff0 100644 --- a/docs/api/menu.md +++ b/docs/api/menu.md @@ -169,7 +169,7 @@ if (process.platform == 'darwin') { }, { label: 'Hide Others', - accelerator: 'Command+Shift+H', + accelerator: 'Command+Alt+H', role: 'hideothers' }, { -- 2.7.4