1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Desktop: change shortcuts for 'Print' and 'Goto Anything' (#1420)

Print            Command/Control + P
Goto Anything    Command/Control + G

closes #1413
This commit is contained in:
Helmut K. C. Tessarek 2019-04-20 07:02:43 -04:00 committed by Laurent Cozic
parent 7b2eac3abd
commit 7fc233e808
2 changed files with 2 additions and 2 deletions

View File

@ -449,7 +449,7 @@ class Application extends BaseApplication {
const printItem = { const printItem = {
label: _('Print'), label: _('Print'),
// accelerator: 'CommandOrControl+P', accelerator: 'CommandOrControl+P',
screens: ['Main'], screens: ['Main'],
click: () => { click: () => {
this.dispatch({ this.dispatch({

View File

@ -348,7 +348,7 @@ GotoAnything.manifest = {
name: 'main', name: 'main',
parent: 'tools', parent: 'tools',
label: _('Goto Anything...'), label: _('Goto Anything...'),
accelerator: 'CommandOrControl+P', accelerator: 'CommandOrControl+G',
screens: ['Main'], screens: ['Main'],
}, },
], ],