From ab54a24434ebf36db5513d7db946020195f0675d Mon Sep 17 00:00:00 2001 From: darksignal7 Date: Sun, 5 Oct 2025 16:43:13 +0300 Subject: [PATCH] make center glow active on full dial style --- .config/quickshell/ii/modules/settings/InterfaceConfig.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml index ad31329b3..8759acc84 100644 --- a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml +++ b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml @@ -79,7 +79,7 @@ ContentPage { currentValue: Config.options.background.clock.cookie.dialNumberStyle onSelected: newValue => { Config.options.background.clock.cookie.dialNumberStyle = newValue; - if (newValue !== "dots") { + if (newValue !== "dots" && newValue !== "full") { Config.options.background.clock.cookie.centerGlow = false; } if (newValue === "numbers") { @@ -259,7 +259,7 @@ ContentPage { enabled: Config.options.background.clock.style === "cookie" visible: Config.options.background.clock.style === "cookie" ConfigSwitch { - enabled: Config.options.background.clock.style === "cookie" && Config.options.background.clock.cookie.dialNumberStyle === "dots" + enabled: Config.options.background.clock.style === "cookie" && Config.options.background.clock.cookie.dialNumberStyle === "dots" || Config.options.background.clock.cookie.dialNumberStyle === "full" buttonIcon: "brightness_7" text: Translation.tr("Center glow") checked: Config.options.background.clock.cookie.centerGlow