From 123b2961a2a5d194351e51275d226410d7133b14 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sat, 31 Aug 2024 12:10:57 +0200 Subject: [PATCH] Reverse mouse scroll direction I found myself scrolling in the wrong direction... This should help --- frontend/src/App.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 66f2bd4..cac513a 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -20,9 +20,9 @@ } function scroll(event: WheelEvent) { if (event.deltaY < 0) { - scrollingTimeFrameStore.next(); - } else { scrollingTimeFrameStore.prev(); + } else { + scrollingTimeFrameStore.next(); } }