From 5f97b4217a13a987a7b9188fd7c670e6963a4872 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Atoch?= Date: Sat, 2 Aug 2025 22:26:32 -0400 Subject: [PATCH] Limit memory usage on wallpapers grid. for now --- Widgets/Sidebar/Panel/WallpaperPanel.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Widgets/Sidebar/Panel/WallpaperPanel.qml b/Widgets/Sidebar/Panel/WallpaperPanel.qml index 932e776..ec7a0b2 100644 --- a/Widgets/Sidebar/Panel/WallpaperPanel.qml +++ b/Widgets/Sidebar/Panel/WallpaperPanel.qml @@ -136,9 +136,12 @@ PanelWindow { source: modelData fillMode: Image.PreserveAspectCrop asynchronous: true - cache: true + cache: false smooth: true mipmap: true + // Limit memory usage + sourceSize.width: 480 + sourceSize.height: 270 } MouseArea { anchors.fill: parent