From c3262aa5f86f860e38033f2d52d5bc3b89b7585d Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Sat, 20 Apr 2019 19:07:13 +0100 Subject: [PATCH] Desktop: Allow CtrlCmd+G shortcut from text editor --- ElectronClient/app/gui/NoteText.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElectronClient/app/gui/NoteText.jsx b/ElectronClient/app/gui/NoteText.jsx index 682a1e5d1..27396f954 100644 --- a/ElectronClient/app/gui/NoteText.jsx +++ b/ElectronClient/app/gui/NoteText.jsx @@ -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);