From f0a6e6b582734ac68b18a9fdea0087a1f2509574 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Sat, 4 Oct 2025 12:00:11 +0200 Subject: [PATCH] Overview: attempt at making the image loading smoother --- Modules/Background/Overview.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Modules/Background/Overview.qml b/Modules/Background/Overview.qml index 0a6dfab7..35f12294 100644 --- a/Modules/Background/Overview.qml +++ b/Modules/Background/Overview.qml @@ -40,7 +40,10 @@ Variants { Qt.callLater(setWallpaperInitial) return } - wallpaper = WallpaperService.getWallpaper(modelData.name) + const wallpaperPath = WallpaperService.getWallpaper(modelData.name) + if (wallpaperPath && wallpaperPath !== wallpaper) { + wallpaper = wallpaperPath + } } color: Color.transparent @@ -81,6 +84,8 @@ Variants { smooth: true mipmap: false cache: false + asynchronous: true + } MultiEffect {