From 52d6e8a5d1bbb9caabdb8fb570a17aaaf1dfb37a Mon Sep 17 00:00:00 2001 From: Ivan Rosinskii <54404008+EoinKanro@users.noreply.github.com> Date: Fri, 5 Dec 2025 18:07:40 +0100 Subject: [PATCH] Fix sourceSize quality --- .../quickshell/ii/modules/ii/background/Background.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/ii/background/Background.qml b/dots/.config/quickshell/ii/modules/ii/background/Background.qml index 07b53e4e9..c5176343b 100644 --- a/dots/.config/quickshell/ii/modules/ii/background/Background.qml +++ b/dots/.config/quickshell/ii/modules/ii/background/Background.qml @@ -193,8 +193,8 @@ Variants { } } sourceSize { - width: bgRoot.scaledWallpaperWidth - height: bgRoot.scaledWallpaperHeight + width: Math.max(bgRoot.wallpaperWidth, bgRoot.wallpaperWidth / bgRoot.parallaxRation) + height: Math.max(bgRoot.wallpaperHeight, bgRoot.wallpaperHeight / bgRoot.parallaxRation) } width: bgRoot.scaledWallpaperWidth height: bgRoot.scaledWallpaperHeight