We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd7a3f0 commit e0bdc72Copy full SHA for e0bdc72
src/menu.ts
@@ -32,8 +32,10 @@ export const getMenu = (browserWindows: Electron.BrowserWindow[]) => {
32
{ type: 'separator' },
33
{ role: 'togglefullscreen' },
34
35
- { role: 'reload' },
36
- { role: 'forceReload' },
+ // Reload shortcuts disabled because they're rarely used and very easy to hit accidentally when debugging
+ // traffic in a web browser at the same time
37
+ { role: 'reload', accelerator: '' },
38
+ { role: 'forceReload', accelerator: '' },
39
{ role: 'toggleDevTools' }
40
]
41
},
0 commit comments