diff options
| author | Ezekiel Gonzales <141341590+notsoeazy@users.noreply.github.com> | 2026-02-03 20:40:20 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-03 23:40:20 +1100 |
| commit | 4c72e3e06bd58a31e16cc1588d94543069fbd00a (patch) | |
| tree | 26179394f61248b20f6565742abc76886e540836 /modules/background | |
| parent | [CI] chore: update flake (diff) | |
| download | caelestia-shell-4c72e3e06bd58a31e16cc1588d94543069fbd00a.tar.gz caelestia-shell-4c72e3e06bd58a31e16cc1588d94543069fbd00a.tar.bz2 caelestia-shell-4c72e3e06bd58a31e16cc1588d94543069fbd00a.zip | |
desktopclock: background blur GameMode support (#1145)
Diffstat (limited to 'modules/background')
| -rw-r--r-- | modules/background/DesktopClock.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/background/DesktopClock.qml b/modules/background/DesktopClock.qml index 77fe447..f9a06a2 100644 --- a/modules/background/DesktopClock.qml +++ b/modules/background/DesktopClock.qml @@ -16,7 +16,7 @@ Item { property real scale: Config.background.desktopClock.scale readonly property bool bgEnabled: Config.background.desktopClock.background.enabled - readonly property bool blurEnabled: bgEnabled && Config.background.desktopClock.background.blur + readonly property bool blurEnabled: bgEnabled && Config.background.desktopClock.background.blur && !GameMode.enabled readonly property bool invertColors: Config.background.desktopClock.invertColors readonly property bool useLightSet: Colours.light ? !invertColors : invertColors readonly property color safePrimary: useLightSet ? Colours.palette.m3primaryContainer : Colours.palette.m3primary |