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 255f282 commit e227132Copy full SHA for e227132
src/electron/main.js
@@ -35,16 +35,22 @@ const browserWindowOpts = {
35
36
const contextMenu = Menu.buildFromTemplate([
37
{
38
- role: 'reload',
39
- accelerator: 'CommandOrControl+R',
40
- },
41
- {
42
- role: 'toggleDevTools',
43
- accelerator: 'CommandOrControl+I',
+ label: 'Developer',
+ submenu: [
+ {
+ role: 'reload',
+ accelerator: 'CommandOrControl+R',
+ },
44
45
+ role: 'toggleDevTools',
46
+ accelerator:
47
+ process.platform === 'darwin' ? 'Alt+Cmd+I' : 'Ctrl+Shift+I',
48
49
+ ],
50
},
51
{ type: 'separator' },
52
- label: 'Quit',
53
+ label: 'Quit Gitify',
54
accelerator: 'CommandOrControl+Q',
55
click: () => {
56
app.quit();
0 commit comments