From 769ed3bf711a6ee0d7191a693a42b40f75b19cc9 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 8 Nov 2025 14:04:16 +0100 Subject: [PATCH] fix clock alignment in lock screen (fix #2399) --- .../.config/quickshell/ii/modules/background/Background.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/background/Background.qml b/dots/.config/quickshell/ii/modules/background/Background.qml index 7057da1cd..bb0e1a42f 100644 --- a/dots/.config/quickshell/ii/modules/background/Background.qml +++ b/dots/.config/quickshell/ii/modules/background/Background.qml @@ -214,6 +214,8 @@ Variants { right: wallpaper.right top: wallpaper.top bottom: wallpaper.bottom + horizontalCenter: undefined + verticalCenter: undefined readonly property real parallaxFactor: Config.options.background.parallax.widgetsFactor leftMargin: { const xOnWallpaper = bgRoot.movableXSpace; @@ -249,8 +251,8 @@ Variants { right: undefined top: undefined bottom: undefined - // horizontalCenter: parent.horizontalCenter - // verticalCenter: parent.verticalCenter + horizontalCenter: parent.horizontalCenter + verticalCenter: parent.verticalCenter } } }