From f348505d2ae04781be5e39df8c1fa9f5dae1c747 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sat, 4 Oct 2025 08:16:32 -0400 Subject: [PATCH] Wallpaper: always resize images to the screen size to improve memory usage. --- Modules/Background/Background.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/Background/Background.qml b/Modules/Background/Background.qml index e27a7537..77522f26 100644 --- a/Modules/Background/Background.qml +++ b/Modules/Background/Background.qml @@ -105,6 +105,7 @@ Variants { visible: false cache: false asynchronous: true + sourceSize: Qt.size(modelData.width, modelData.height) onStatusChanged: { if (status === Image.Error) { Logger.warn("Current wallpaper failed to load:", source) @@ -120,6 +121,7 @@ Variants { visible: false cache: false asynchronous: true + sourceSize: Qt.size(modelData.width, modelData.height) onStatusChanged: { if (status === Image.Error) { Logger.warn("Next wallpaper failed to load:", source)