Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
hacdias committed Aug 11, 2022
1 parent 12734da commit edc509d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tray.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function buildMenu (ctx) {
label: i18n.t('restart'),
click: () => { ctx.restartIpfs() },
visible: false,
accelerator: IS_MAC ? 'Command+R' : undefined
accelerator: IS_MAC ? 'Command+R' : null
},
{
id: 'startIpfs',
Expand Down Expand Up @@ -87,7 +87,7 @@ function buildMenu (ctx) {
id: 'takeScreenshot',
label: i18n.t('takeScreenshot'),
click: () => { takeScreenshot(ctx) },
accelerator: IS_MAC ? SCREENSHOT_SHORTCUT : undefined,
accelerator: IS_MAC ? SCREENSHOT_SHORTCUT : null,
enabled: false
},
{ type: 'separator' },
Expand Down Expand Up @@ -201,7 +201,7 @@ function buildMenu (ctx) {
{
label: i18n.t('quit'),
click: () => { app.quit() },
accelerator: IS_MAC ? 'Command+Q' : undefined
accelerator: IS_MAC ? 'Command+Q' : null
}
])
}
Expand Down

0 comments on commit edc509d

Please sign in to comment.