From 5929533d7821706125b081cfbdfd5f3d36d68e7d Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 14 Oct 2025 09:28:42 +0200 Subject: [PATCH] cookie clock: fix jagged rotating date --- .../background/cookieClock/dateIndicator/RotatingDate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/RotatingDate.qml b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/RotatingDate.qml index e27d64bd4..de11cf404 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/RotatingDate.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/RotatingDate.qml @@ -30,7 +30,7 @@ Item { Repeater { model: root.dateText.length - delegate: StyledText { + delegate: Text { required property int index property real angle: index * root.angleStep - Math.PI / 2 x: root.width / 2 + root.radius * Math.cos(angle) - width / 2