diff --git a/src/modules/reader/components/ReaderHotkeys.tsx b/src/modules/reader/components/ReaderHotkeys.tsx index 472cd4b9..2133fd97 100644 --- a/src/modules/reader/components/ReaderHotkeys.tsx +++ b/src/modules/reader/components/ReaderHotkeys.tsx @@ -200,7 +200,7 @@ export const ReaderHotkeys = ({ automaticScrolling.toggleActive, ]); useHotkeys( - hotkeys[ReaderHotkey.AUTO_SCROLL_SPEED_INCREASE], + hotkeys[ReaderHotkey.AUTO_SCROLL_SPEED_DECREASE], () => updateSetting('autoScroll', { ...autoScroll, @@ -209,7 +209,7 @@ export const ReaderHotkeys = ({ [updateSetting, autoScroll.value], ); useHotkeys( - hotkeys[ReaderHotkey.AUTO_SCROLL_SPEED_DECREASE], + hotkeys[ReaderHotkey.AUTO_SCROLL_SPEED_INCREASE], () => updateSetting('autoScroll', { ...autoScroll,