diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-17 23:02:54 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-17 23:02:54 +1000 |
| commit | 491c0f1dbd601956f3f3b4fd56e1872632f2f814 (patch) | |
| tree | 3722ca258533d542a180a74f50930a98600ee4b6 /modules/launcher/Content.qml | |
| parent | launcher: fix wallpaper preview colours (diff) | |
| download | caelestia-shell-491c0f1dbd601956f3f3b4fd56e1872632f2f814.tar.gz caelestia-shell-491c0f1dbd601956f3f3b4fd56e1872632f2f814.tar.bz2 caelestia-shell-491c0f1dbd601956f3f3b4fd56e1872632f2f814.zip | |
launcher: fix transition between lists
Also fix wallpaper preview not switching back when using non dynamic scheme
Diffstat (limited to 'modules/launcher/Content.qml')
| -rw-r--r-- | modules/launcher/Content.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml index 9e08a93..9ab6b40 100644 --- a/modules/launcher/Content.qml +++ b/modules/launcher/Content.qml @@ -81,7 +81,7 @@ Item { const currentItem = list.currentList?.currentItem; if (currentItem) { if (list.showWallpapers) { - if (currentItem.modelData.path !== Wallpapers.actualCurrent) + if (Colours.scheme === "dynamic" && currentItem.modelData.path !== Wallpapers.actualCurrent) Wallpapers.previewColourLock = true; Wallpapers.setWallpaper(currentItem.modelData.path); root.visibilities.launcher = false; |