Skip to content

Commit f2fdae7

Browse files
PandorasFoxclaude
andcommitted
fix: source overview blur from parallax shader in scrolling wallpaper mode
The niri overview blur was sourcing from the raw currentWallpaper image, which is invisible and has no scroll-aware UV cropping in parallax mode. Now falls through to parallaxLoader.item when active, producing a correctly framed blur that matches the on-screen wallpaper crop. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 89c16d2 commit f2fdae7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

quickshell/Modules/WallpaperBackground.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,7 @@ Variants {
970970

971971
sourceComponent: MultiEffect {
972972
anchors.fill: parent
973-
source: effectLoader.active ? effectLoader.item : currentWallpaper
973+
source: effectLoader.active ? effectLoader.item : (parallaxLoader.active ? parallaxLoader.item : currentWallpaper)
974974
blurEnabled: true
975975
blur: 0.8
976976
blurMax: 75

0 commit comments

Comments
 (0)