From 10b2cf26627aee57b782dfd0a28edb1e76d73603 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 12 Aug 2025 15:35:56 +0700 Subject: [PATCH] background: fix padding value for least busy region proc --- .config/quickshell/ii/modules/background/Background.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/background/Background.qml b/.config/quickshell/ii/modules/background/Background.qml index 9efa8485..2f3b5762 100644 --- a/.config/quickshell/ii/modules/background/Background.qml +++ b/.config/quickshell/ii/modules/background/Background.qml @@ -117,8 +117,8 @@ Variants { leastBusyRegionProc.path = bgRoot.wallpaperPath leastBusyRegionProc.contentWidth = clock.implicitWidth leastBusyRegionProc.contentHeight = clock.implicitHeight - leastBusyRegionProc.horizontalPadding = bgRoot.movableXSpace * 2 + 100 - leastBusyRegionProc.verticalPadding = bgRoot.movableYSpace * 2 + 100 + leastBusyRegionProc.horizontalPadding = bgRoot.movableXSpace + 100 + leastBusyRegionProc.verticalPadding = bgRoot.movableYSpace + 100 leastBusyRegionProc.running = false; leastBusyRegionProc.running = true; }