Reverse mouse scroll direction

I found myself scrolling in the wrong direction... This should help
This commit is contained in:
2024-08-31 12:10:57 +02:00
parent f1c8c394c9
commit 123b2961a2

View File

@@ -20,9 +20,9 @@
}
function scroll(event: WheelEvent) {
if (event.deltaY < 0) {
scrollingTimeFrameStore.next();
} else {
scrollingTimeFrameStore.prev();
} else {
scrollingTimeFrameStore.next();
}
}
</script>