diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 19:19:48 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 19:19:48 +1000 |
| commit | c650f4392d12c9ac71996e393c0a32169a27e4cb (patch) | |
| tree | aa2f2c5067692e7197e824c79e8c6bc0c4da06dc /modules/launcher | |
| parent | thumbnailer: better caching (diff) | |
| download | caelestia-shell-c650f4392d12c9ac71996e393c0a32169a27e4cb.tar.gz caelestia-shell-c650f4392d12c9ac71996e393c0a32169a27e4cb.tar.bz2 caelestia-shell-c650f4392d12c9ac71996e393c0a32169a27e4cb.zip | |
launcher: focus actual current wall
Also thumbnailer kill process before starting new proc
Diffstat (limited to 'modules/launcher')
| -rw-r--r-- | modules/launcher/WallpaperList.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/WallpaperList.qml b/modules/launcher/WallpaperList.qml index 430964e..b3a0fd7 100644 --- a/modules/launcher/WallpaperList.qml +++ b/modules/launcher/WallpaperList.qml @@ -20,10 +20,10 @@ PathView { list.length -= 1; // Always show odd number return list; } - onValuesChanged: root.currentIndex = search ? 0 : values.findIndex(w => w.path === Wallpapers.current) + onValuesChanged: root.currentIndex = search ? 0 : values.findIndex(w => w.path === Wallpapers.actualCurrent) } - Component.onCompleted: currentIndex = Wallpapers.list.findIndex(w => w.path === Wallpapers.current) + Component.onCompleted: currentIndex = Wallpapers.list.findIndex(w => w.path === Wallpapers.actualCurrent) Component.onDestruction: Wallpapers.stopPreview() onCurrentItemChanged: { |