From 8194b2446b115d7cb195e62a55a79fde18d230e6 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 14 Nov 2019 18:37:25 -0800 Subject: [PATCH] Move to CTRL+= for windows, remove the need for the shift --- app/menu.js | 2 +- test/app/fixtures/menu-windows-linux-setup.json | 2 +- test/app/fixtures/menu-windows-linux.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/menu.js b/app/menu.js index 9620545f43a..7ff1e1cf162 100644 --- a/app/menu.js +++ b/app/menu.js @@ -86,7 +86,7 @@ exports.createTemplate = (options, messages) => { label: messages.viewMenuResetZoom.message, }, { - accelerator: platform === 'darwin' ? 'Command+=' : null, + accelerator: platform === 'darwin' ? 'Command+=' : 'Control+=', role: 'zoomin', label: messages.viewMenuZoomIn.message, }, diff --git a/test/app/fixtures/menu-windows-linux-setup.json b/test/app/fixtures/menu-windows-linux-setup.json index fbe2f977efa..7c0ca81dec7 100644 --- a/test/app/fixtures/menu-windows-linux-setup.json +++ b/test/app/fixtures/menu-windows-linux-setup.json @@ -74,7 +74,7 @@ "role": "resetzoom" }, { - "accelerator": null, + "accelerator": "Control+=", "label": "Zoom In", "role": "zoomin" }, diff --git a/test/app/fixtures/menu-windows-linux.json b/test/app/fixtures/menu-windows-linux.json index 90128685c26..16ee53229e9 100644 --- a/test/app/fixtures/menu-windows-linux.json +++ b/test/app/fixtures/menu-windows-linux.json @@ -63,7 +63,7 @@ "role": "resetzoom" }, { - "accelerator": null, + "accelerator": "Control+=", "label": "Zoom In", "role": "zoomin" },