Limit memory usage on wallpapers grid. for now

This commit is contained in:
Sébastien Atoch 2025-08-02 22:26:32 -04:00
parent 260c74b3e0
commit 5f97b4217a

View file

@ -136,9 +136,12 @@ PanelWindow {
source: modelData source: modelData
fillMode: Image.PreserveAspectCrop fillMode: Image.PreserveAspectCrop
asynchronous: true asynchronous: true
cache: true cache: false
smooth: true smooth: true
mipmap: true mipmap: true
// Limit memory usage
sourceSize.width: 480
sourceSize.height: 270
} }
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent