From 5b88995b39ce80785c822cc6f79d4b4fe80561d4 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 27 Apr 2026 21:30:53 +1000 Subject: [PATCH] fix: initial 0 size on launcher wallpaper item --- modules/launcher/items/WallpaperItem.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/launcher/items/WallpaperItem.qml b/modules/launcher/items/WallpaperItem.qml index 3f2143ae..ddf0d61a 100644 --- a/modules/launcher/items/WallpaperItem.qml +++ b/modules/launcher/items/WallpaperItem.qml @@ -66,6 +66,7 @@ Item { anchors.fill: parent path: root.modelData.path smooth: !root.PathView.view.moving + sourceSize: Qt.size(image.implicitWidth, image.implicitHeight) } }