diff --git a/Widgets/Sidebar/Panel/WallpaperPanel.qml b/Widgets/Sidebar/Panel/WallpaperPanel.qml index ec7a0b2..dd6219a 100644 --- a/Widgets/Sidebar/Panel/WallpaperPanel.qml +++ b/Widgets/Sidebar/Panel/WallpaperPanel.qml @@ -140,8 +140,8 @@ PanelWindow { smooth: true mipmap: true // Limit memory usage - sourceSize.width: 480 - sourceSize.height: 270 + sourceSize.width: Math.min(width, 480) + sourceSize.height: Math.min(height, 270) } MouseArea { anchors.fill: parent