From 29bbc59663b81089ec28c7577a3073c1cff8d9e1 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 23 Sep 2022 01:18:22 +0300 Subject: [PATCH] Don't apply blur if it's set to 0px --- contents/ui/components/DesktopBackground.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents/ui/components/DesktopBackground.qml b/contents/ui/components/DesktopBackground.qml index 1f8e7e1..59c7bb7 100644 --- a/contents/ui/components/DesktopBackground.qml +++ b/contents/ui/components/DesktopBackground.qml @@ -22,7 +22,7 @@ Item { anchors.fill: parent source: desktopBackground radius: desktopBackgroundBlur - visible: true cached: false + visible: desktopBackgroundBlur > 0 } }