Fix zoom in key binding (#80)

This commit is contained in:
TimTrademark 2023-12-27 14:21:52 +01:00 committed by GitHub
parent eda4981e59
commit b706b89dcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,16 @@ const template = [
{ role: 'toggleDevTools' },
{ type: 'separator' },
{ role: 'resetZoom' },
{ role: 'zoomIn' },
{
accelerator: 'CommandOrControl+=',
role: "zoomIn",
visible: false
},
{
accelerator: 'CmdOrCtrl+Plus',
role: "zoomIn",
visible: true
},
{ role: 'zoomOut' },
{ type: 'separator' },
{ role: 'togglefullscreen' }