1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-04 19:16:07 +02:00

Desktop: Improved: Added shortuct for tags (Cmd+Opt+T / Ctrl+Alt+T) (#1638)

fixes #1626
This commit is contained in:
Helmut K. C. Tessarek 2019-06-10 18:45:49 -04:00 committed by Laurent Cozic
parent 041bdc08a2
commit 468c345527

View File

@ -704,6 +704,16 @@ class Application extends BaseApplication {
name: 'commandStartExternalEditing',
});
},
}, {
label: _('Tags'),
screens: ['Main'],
accelerator: 'CommandOrControl+Alt+T',
click: () => {
this.dispatch({
type: 'WINDOW_COMMAND',
name: 'setTags',
});
},
}, {
type: 'separator',
screens: ['Main'],