From 19d063c3e925d0a84221382624f881c7832cd844 Mon Sep 17 00:00:00 2001 From: darksignal7 Date: Sun, 5 Oct 2025 17:17:21 +0300 Subject: [PATCH] fix second dot/hand animation --- .config/quickshell/ii/modules/background/CookieClock.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/CookieClock.qml b/.config/quickshell/ii/modules/background/CookieClock.qml index c7c927fa0..d39877b72 100644 --- a/.config/quickshell/ii/modules/background/CookieClock.qml +++ b/.config/quickshell/ii/modules/background/CookieClock.qml @@ -298,7 +298,7 @@ Item { } Rectangle { implicitWidth: Config.options.background.clock.cookie.secondHandStyle === "dot" ? root.secondDotSize : root.secondsHandLength - implicitHeight: Config.options.background.clock.cookie.secondHandStyle === "dot" ? implicitWidth : root.secondsHandWidth + implicitHeight: Config.options.background.clock.cookie.secondHandStyle === "dot" ? root.secondDotSize : root.secondsHandWidth radius: Config.options.background.clock.cookie.secondHandStyle === "dot" ? implicitWidth / 2 : root.secondsHandWidth / 2 color: colSeconds Behavior on implicitHeight { @@ -307,6 +307,7 @@ Item { Behavior on implicitWidth { animation: Appearance.animation.elementResize.numberAnimation.createObject(this) } + anchors { left: parent.left verticalCenter: parent.verticalCenter