diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-04 16:12:07 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-04 16:12:07 +1000 |
| commit | 3d29709df9b1d390b245c00b71b7dd6350fd4abe (patch) | |
| tree | febe29563558184d3ac3e9deb03e6b2346c7a5ff /modules/background | |
| parent | dcontent/bt: settings toggle between (diff) | |
| download | caelestia-shell-3d29709df9b1d390b245c00b71b7dd6350fd4abe.tar.gz caelestia-shell-3d29709df9b1d390b245c00b71b7dd6350fd4abe.tar.bz2 caelestia-shell-3d29709df9b1d390b245c00b71b7dd6350fd4abe.zip | |
background: fix when disabled
Fixes #246, #283
Diffstat (limited to 'modules/background')
| -rw-r--r-- | modules/background/Background.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/background/Background.qml b/modules/background/Background.qml index 7c645fb..09eed3c 100644 --- a/modules/background/Background.qml +++ b/modules/background/Background.qml @@ -4,10 +4,11 @@ import Quickshell import Quickshell.Wayland import QtQuick -LazyLoader { +Loader { + asynchronous: true active: Config.background.enabled - Variants { + sourceComponent: Variants { model: Quickshell.screens StyledWindow { |