Skip to content

Commit

Permalink
add invisible shortcuts for zooming in
Browse files Browse the repository at this point in the history
  • Loading branch information
jwetzell authored and cpvalente committed Oct 18, 2024
1 parent c587045 commit ea2330e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/electron/src/menu/applicationMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,10 @@ function makeViewMenu(clientUrl) {
{ role: 'forceReload' },
{ type: 'separator' },
{ role: 'resetZoom' },
{ role: 'zoomIn' },
// NOTE: I still contend this zoomin mess is an electron bug
{ role: 'zoomIn', accelerator: 'CmdOrCtrl+Plus' },
{ role: 'zoomIn', accelerator: 'CmdOrCtrl+=', visible: false },
{ role: 'zoomIn', accelerator: 'CmdOrCtrl+numadd', visible: false },
{ role: 'zoomOut' },
{ type: 'separator' },
{ role: 'togglefullscreen' },
Expand Down

0 comments on commit ea2330e

Please sign in to comment.