From 61738554e5462cfc8ee448a2a71d1575ed7c2384 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 1 May 2026 23:32:51 +1000 Subject: [PATCH] fix: match calendar reset btn with next/prev --- modules/dashboard/dash/Calendar.qml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/dashboard/dash/Calendar.qml b/modules/dashboard/dash/Calendar.qml index 8c2ecdf1..08ef5629 100644 --- a/modules/dashboard/dash/Calendar.qml +++ b/modules/dashboard/dash/Calendar.qml @@ -62,12 +62,18 @@ CustomMouseArea { StateLayer { color: Colours.palette.m3primary - radius: Tokens.rounding.full + radius: pressed ? Tokens.rounding.small : Tokens.rounding.large disabled: { const now = new Date(); return root.currMonth === now.getMonth() && root.currYear === now.getFullYear(); } onClicked: root.dashState.currentDate = new Date() + + Behavior on radius { + Anim { + type: Anim.DefaultEffects + } + } } StyledText {