From 800f5c7c649828dc1e4da59f4d242d3ff16a7ddf Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 21 Sep 2025 13:59:20 +0200 Subject: [PATCH] background: fix locked text spacing when there is no quote --- .config/quickshell/ii/modules/background/Background.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/Background.qml b/.config/quickshell/ii/modules/background/Background.qml index c6cf9cd94..010f5850f 100644 --- a/.config/quickshell/ii/modules/background/Background.qml +++ b/.config/quickshell/ii/modules/background/Background.qml @@ -378,6 +378,7 @@ Variants { text: DateTime.date } StyledText { // Somehow gets fucked up if made a ClockText??? + visible: Config.options.background.quote.length > 0 Layout.fillWidth: true horizontalAlignment: bgRoot.textHorizontalAlignment font { @@ -389,7 +390,6 @@ Variants { color: bgRoot.colText style: Text.Raised styleColor: Appearance.colors.colShadow - // visible: Config.options.background.quote.length > 0 text: Config.options.background.quote } }