Skip to content

Commit

Permalink
Fix zoom in key binding (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimTrademark authored Dec 27, 2023
1 parent eda4981 commit b706b89
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion electron/main/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' }
Expand Down

0 comments on commit b706b89

Please sign in to comment.