1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-17 18:44:45 +02:00

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

This commit is contained in:
Laurent Cozic 2020-06-01 21:24:14 +00:00
parent 3f1c9c989b
commit 468261906a

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