add invisible shortcuts for zooming in

This commit is contained in:
2024-10-16 04:25:58 -05:00
committed by Carlos Valente
parent c5870452e3
commit ea2330e23b
+4 -1
View File
@@ -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' },