Desktop: Allow CtrlCmd+G shortcut from text editor

pull/1434/head
Laurent Cozic 2019-04-20 19:07:13 +01:00
parent 42119c8f42
commit c3262aa5f8
1 changed files with 1 additions and 1 deletions

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);