We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CTRL+=
1 parent 2ac803c commit 01e6370Copy full SHA for 01e6370
packages/frontend/electron/src/main/application-menu/create.ts
@@ -1,6 +1,6 @@
1
import { app, Menu } from 'electron';
2
3
-import { isMacOS } from '../../shared/utils';
+import { isMacOS, isWindows } from '../../shared/utils';
4
import { logger, revealLogFile } from '../logger';
5
import { checkForUpdates } from '../updater';
6
import {
@@ -113,6 +113,9 @@ export function createApplicationMenu() {
113
{ type: 'separator' },
114
{ role: 'resetZoom' },
115
{ role: 'zoomIn' },
116
+ ...(isWindows()
117
+ ? [{ role: 'zoomIn', accelerator: 'Ctrl+=', visible: false }]
118
+ : []),
119
{ role: 'zoomOut' },
120
121
{ role: 'togglefullscreen' },
0 commit comments