From c70b8f7aa2b722dfd925c97fe380d816303011b3 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 7 Oct 2025 17:33:18 +0200 Subject: [PATCH] fix unqualified access in HourHand --- .../ii/modules/background/cookieClock/HourHand.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/quickshell/ii/modules/background/cookieClock/HourHand.qml b/.config/quickshell/ii/modules/background/cookieClock/HourHand.qml index da1d8060f..01e6bae21 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/HourHand.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/HourHand.qml @@ -34,14 +34,14 @@ Item { Rectangle { anchors.verticalCenter: parent.verticalCenter x: { - let position = parent.width / 2 - handWidth / 2; + let position = parent.width / 2 - root.handWidth / 2; if (root.style === "classic") position -= 15; return position; } width: hourHandLength - height: root.style === "classic" ? 8 : handWidth + height: root.style === "classic" ? 8 : root.handWidth - radius: root.style === "classic" ? 2 : handWidth / 2 + radius: root.style === "classic" ? 2 : root.handWidth / 2 color : Qt.rgba(root.color.r, root.color.g, root.color.b, fillColorAlpha) border.color: root.color