Skip to content

Commit

Permalink
Changed ZoomIn ZoomOut Shortcuts to Ctrl+I/Ctrl+O
Browse files Browse the repository at this point in the history
  • Loading branch information
th-ch committed Oct 6, 2023
1 parent da9cb8e commit 07853d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ export const mainMenuTemplate = (win: BrowserWindow): MenuTemplate => {
{ role: 'reload' },
{ role: 'forceReload' },
{ type: 'separator' },
{ role: 'zoomIn' },
{ role: 'zoomOut' },
{ role: 'zoomIn', accelerator: process.platform === 'darwin' ? 'Cmd+I' : 'Ctrl+I' },
{ role: 'zoomOut', accelerator: process.platform === 'darwin' ? 'Cmd+O' : 'Ctrl+O' },
{ role: 'resetZoom' },
{ type: 'separator' },
{ role: 'togglefullscreen' },
Expand Down

0 comments on commit 07853d8

Please sign in to comment.