1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-23 18:53:36 +02:00

Desktop: Allow CtrlCmd+G shortcut from text editor

This commit is contained in:
Laurent Cozic 2019-04-20 19:07:13 +01:00
parent 42119c8f42
commit c3262aa5f8

View File

@ -820,7 +820,7 @@ class NoteTextComponent extends React.Component {
this.editor_.editor.renderer.on('afterRender', this.onAfterEditorRender_);
const cancelledKeys = [];
const letters = ['F', 'T', 'P', 'Q', 'L', ','];
const letters = ['F', 'T', 'P', 'Q', 'L', ',', 'G'];
for (let i = 0; i < letters.length; i++) {
const l = letters[i];
cancelledKeys.push('Ctrl+' + l);