1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-13 22:12:50 +02:00

Electron: Fixes #798: Enable Select All shortcut in macOS

This commit is contained in:
Laurent Cozic
2018-10-02 08:40:33 +01:00
parent 2202eb6570
commit 30165e8d6a

View File

@@ -420,6 +420,10 @@ class Application extends BaseApplication {
label: _('Paste'),
role: 'paste',
accelerator: 'CommandOrControl+V',
}, {
label: _('Select all'),
role: 'selectall',
accelerator: 'CommandOrControl+A',
}, {
type: 'separator',
screens: ['Main'],