From 4c84e4fff3a0243c9c977114584cda44f2173222 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 4 May 2025 16:29:34 +1000 Subject: feat: actually set wallpaper Make launcher wallpaper picker actually work --- modules/launcher/Content.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/launcher/Content.qml') diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml index be6be2e..9759abb 100644 --- a/modules/launcher/Content.qml +++ b/modules/launcher/Content.qml @@ -70,8 +70,8 @@ Item { const currentItem = list.currentList?.currentItem; if (currentItem) { if (list.showWallpapers) { - // TODO - console.log(currentItem.modelData.path); + Wallpapers.setWallpaper(currentItem.modelData.path); + root.launcher.launcherVisible = false; } else if (text.startsWith(LauncherConfig.actionPrefix)) { currentItem.modelData.onClicked(list.currentList); } else { -- cgit v1.2.3-freya