From bfda5f2d667b3665e59e42da03b8e5559310443c Mon Sep 17 00:00:00 2001 From: Scott McKendry Date: Sun, 5 Jul 2026 07:18:34 +1200 Subject: [PATCH] fix(lockscreen): clock off-center with single hour digit (#2745) --- quickshell/Modules/Lock/LockScreenContent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Modules/Lock/LockScreenContent.qml b/quickshell/Modules/Lock/LockScreenContent.qml index 0cdd60969..a58421fce 100644 --- a/quickshell/Modules/Lock/LockScreenContent.qml +++ b/quickshell/Modules/Lock/LockScreenContent.qml @@ -358,7 +358,7 @@ Item { property bool hasSeconds: timeParts.length > 2 ClockDigitText { - width: 75 + width: clockText.hours.length > 1 ? 75 : 0 text: clockText.hours.length > 1 ? clockText.hours[0] : "" }