1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Adding Extensions item for non-mac menu (#1392)

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-11-16 13:50:32 +03:00 committed by GitHub
parent d559d5e62a
commit d612626801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,6 +127,13 @@ export function buildMenu(windowManager: WindowManager) {
navigate(preferencesURL()) navigate(preferencesURL())
} }
}, },
{
label: 'Extensions',
accelerator: 'Ctrl+Shift+E',
click() {
navigate(extensionsURL())
}
},
{ type: 'separator' }, { type: 'separator' },
{ role: 'quit' } { role: 'quit' }
]), ]),