From 031833f85eb48410fe0614dfd197be27471c0411 Mon Sep 17 00:00:00 2001 From: Soramane <61896496+soramanew@users.noreply.github.com> Date: Sat, 16 May 2026 22:52:39 +0800 Subject: [PATCH] fix: dash calendar today indicator So uhh apparently it doesn't need -1? --- modules/dashboard/dash/Calendar.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/dashboard/dash/Calendar.qml b/modules/dashboard/dash/Calendar.qml index 08ef5629..9061f2ee 100644 --- a/modules/dashboard/dash/Calendar.qml +++ b/modules/dashboard/dash/Calendar.qml @@ -165,8 +165,7 @@ CustomMouseArea { today = todayItem; } - // I have no idea why it needs -1 but oh well - x: today ? today.x + (today.width - implicitWidth) / 2 - 1 : 0 + x: today ? today.x + (today.width - implicitWidth) / 2 : 0 y: today ? today.y - Tokens.padding.extraSmall - 1 : 0 implicitSize: today ? Math.max(today.implicitWidth, today.implicitHeight) + Tokens.padding.extraSmall * 2 : 0