diff --git a/app/menu.js b/app/menu.js index 00396176fb..0e745beb20 100644 --- a/app/menu.js +++ b/app/menu.js @@ -85,6 +85,7 @@ exports.createTemplate = (options, messages) => { label: messages.viewMenuResetZoom.message, }, { + accelerator: platform === 'darwin' ? 'Command+=' : 'Control+Plus', role: 'zoomin', label: messages.viewMenuZoomIn.message, }, diff --git a/test/app/fixtures/menu-mac-os-setup.json b/test/app/fixtures/menu-mac-os-setup.json index dd06a5a1be..d0898ae400 100644 --- a/test/app/fixtures/menu-mac-os-setup.json +++ b/test/app/fixtures/menu-mac-os-setup.json @@ -115,6 +115,7 @@ "role": "resetzoom" }, { + "accelerator": "Command+=", "label": "Zoom In", "role": "zoomin" }, diff --git a/test/app/fixtures/menu-mac-os.json b/test/app/fixtures/menu-mac-os.json index 02d2e0f8ca..d1e083836c 100644 --- a/test/app/fixtures/menu-mac-os.json +++ b/test/app/fixtures/menu-mac-os.json @@ -102,6 +102,7 @@ "role": "resetzoom" }, { + "accelerator": "Command+=", "label": "Zoom In", "role": "zoomin" }, diff --git a/test/app/fixtures/menu-windows-linux-setup.json b/test/app/fixtures/menu-windows-linux-setup.json index 9a8c610b31..b8d55b46bd 100644 --- a/test/app/fixtures/menu-windows-linux-setup.json +++ b/test/app/fixtures/menu-windows-linux-setup.json @@ -74,6 +74,7 @@ "role": "resetzoom" }, { + "accelerator": "Control+Plus", "label": "Zoom In", "role": "zoomin" }, diff --git a/test/app/fixtures/menu-windows-linux.json b/test/app/fixtures/menu-windows-linux.json index 3321f7f6c3..b2000dfa1d 100644 --- a/test/app/fixtures/menu-windows-linux.json +++ b/test/app/fixtures/menu-windows-linux.json @@ -63,6 +63,7 @@ "role": "resetzoom" }, { + "accelerator": "Control+Plus", "label": "Zoom In", "role": "zoomin" },