summaryrefslogtreecommitdiff
path: root/accounts
diff options
context:
space:
mode:
Diffstat (limited to 'accounts')
-rw-r--r--accounts/gkleen@sif/shell/quickshell/Clock.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/Clock.qml b/accounts/gkleen@sif/shell/quickshell/Clock.qml
index b7004528..58a80b8b 100644
--- a/accounts/gkleen@sif/shell/quickshell/Clock.qml
+++ b/accounts/gkleen@sif/shell/quickshell/Clock.qml
@@ -148,7 +148,7 @@ Item {
148 function scrollYear(event) { 148 function scrollYear(event) {
149 angleRem += event.angleDelta.y; 149 angleRem += event.angleDelta.y;
150 const d = Math.round(angleRem * sensitivity); 150 const d = Math.round(angleRem * sensitivity);
151 yearCalendar.year += d; 151 yearCalendar.year -= d;
152 angleRem -= d / sensitivity; 152 angleRem -= d / sensitivity;
153 } 153 }
154 154