From 81c3110d0d036d3a9a4b50d4fe893e3d979bf47c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Sagaert?= Date: Tue, 4 Nov 2025 19:29:07 +0100 Subject: [PATCH] disable auto padding for blurred wallpaper (#628) fixes the vignette around the blurred image --- Modules/BlurredWallpaperBackground.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/BlurredWallpaperBackground.qml b/Modules/BlurredWallpaperBackground.qml index 2625fd63..b3056dba 100644 --- a/Modules/BlurredWallpaperBackground.qml +++ b/Modules/BlurredWallpaperBackground.qml @@ -194,6 +194,7 @@ Variants { blur: 0.8 blurMax: 75 opacity: 1 - root.transitionProgress + autoPaddingEnabled: false } MultiEffect { @@ -203,6 +204,7 @@ Variants { blur: 0.8 blurMax: 75 opacity: root.transitionProgress + autoPaddingEnabled: false } }