Skip to content

Commit

Permalink
ShortcutsDialog: next/previous view shortcuts were incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
warpdesign committed Apr 16, 2024
1 parent 280a2b4 commit 46b2fd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/dialogs/ShortcutsDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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') },
Expand Down

0 comments on commit 46b2fd4

Please sign in to comment.