From b12cf345dc0461f9c808db2897f3a68cb35b7525 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Mon, 29 Sep 2025 16:53:59 -0400 Subject: [PATCH] Background Wallpaper: attempt to free up memory earlier. --- Modules/Background/Background.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Modules/Background/Background.qml b/Modules/Background/Background.qml index 6a62ed9c..5bb903ac 100644 --- a/Modules/Background/Background.qml +++ b/Modules/Background/Background.qml @@ -261,8 +261,12 @@ Variants { // We are interrupting a transition transitionAnimation.stop() transitionProgress = 0 - currentWallpaper.source = nextWallpaper.source + + const newCurrentSource = nextWallpaper.source + currentWallpaper.source = "" nextWallpaper.source = "" + + currentWallpaper.source = newCurrentSource } nextWallpaper.source = source