From 46b2fd4dd1c3b92a558b8a7ba99626137e600fbb Mon Sep 17 00:00:00 2001 From: Nicolas Ramz Date: Tue, 16 Apr 2024 12:04:41 +0200 Subject: [PATCH] ShortcutsDialog: next/previous view shortcuts were incorrect --- src/components/dialogs/ShortcutsDialog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/dialogs/ShortcutsDialog.tsx b/src/components/dialogs/ShortcutsDialog.tsx index 8161cb14..0c96b7de 100644 --- a/src/components/dialogs/ShortcutsDialog.tsx +++ b/src/components/dialogs/ShortcutsDialog.tsx @@ -20,8 +20,8 @@ export const buildShortcuts = (t: TFunction<'translation', undefined>) => ({ [t('SHORTCUT.GROUP.GLOBAL')]: [ { combo: 'alt + mod + l', label: t('SHORTCUT.MAIN.DOWNLOADS_TAB') }, { combo: 'alt + mod + e', label: t('SHORTCUT.MAIN.EXPLORER_TAB') }, - { combo: 'ctrl + alt + right', label: t('SHORTCUT.MAIN.NEXT_VIEW') }, - { combo: 'ctrl + alt + left', label: t('SHORTCUT.MAIN.PREVIOUS_VIEW') }, + { combo: 'ctrl + shift + right', label: t('SHORTCUT.MAIN.NEXT_VIEW') }, + { combo: 'ctrl + shift + left', label: t('SHORTCUT.MAIN.PREVIOUS_VIEW') }, { combo: 'mod + r', label: t('SHORTCUT.MAIN.RELOAD_VIEW') }, { combo: 'escape', label: t('SHORTCUT.LOG.TOGGLE') }, { combo: 'mod + s', label: t('SHORTCUT.MAIN.KEYBOARD_SHORTCUTS') },