From 1362e22d797db41564565e88a1dadfe9812e4456 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 26 Jun 2025 16:59:32 +1000 Subject: dashboard: fix calendar Fixes days in negative utc timezones --- modules/dashboard/dash/Calendar.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/dashboard/dash/Calendar.qml b/modules/dashboard/dash/Calendar.qml index aacea8f..1860d9f 100644 --- a/modules/dashboard/dash/Calendar.qml +++ b/modules/dashboard/dash/Calendar.qml @@ -63,7 +63,7 @@ Column { anchors.centerIn: parent horizontalAlignment: Text.AlignHCenter - text: grid.locale.toString(day.model.date, "d") + text: Qt.formatDate(day.model.date, "d") color: day.model.today ? Colours.palette.m3onPrimary : day.model.month === grid.month ? Colours.palette.m3onSurfaceVariant : Colours.palette.m3outline } } -- cgit v1.2.3-freya