diff --git a/src/main/menu.ts b/src/main/menu.ts index 08260d8e53..14525581b8 100644 --- a/src/main/menu.ts +++ b/src/main/menu.ts @@ -134,18 +134,23 @@ export function buildMenu(windowManager: WindowManager) { click() { navigate(extensionsURL()) } - }, + } + ]), + { type: 'separator' }, + { + role: 'close', + label: "Close Window" + }, + ...ignoreOnMac([ { type: 'separator' }, { - label: 'Quit', + label: 'Exit', accelerator: 'Alt+F4', click() { exitApp() } } - ]), - { type: 'separator' }, - { role: 'close' } // close current window + ]) ] };