Desktop: Fixes #3298: Fixed shortcut to focus Note List when editor is in focus

pull/3305/head
Laurent Cozic 2020-06-01 21:24:14 +00:00
parent 3f1c9c989b
commit 468261906a
1 changed files with 2 additions and 0 deletions

View File

@ -432,6 +432,8 @@ function AceEditor(props: NoteBodyEditorProps, ref: any) {
cancelledKeys.push(`Command+${l}`);
}
cancelledKeys.push('Alt+E');
cancelledKeys.push('Command+Shift+L');
cancelledKeys.push('Ctrl+Shift+L');
for (let i = 0; i < cancelledKeys.length; i++) {
const k = cancelledKeys[i];