fix stuff not getting blurred when transparency is enabled

This commit is contained in:
end-4
2025-08-11 22:42:14 +07:00
parent e8ebf5af73
commit d448b76dd4
3 changed files with 16 additions and 2 deletions
@@ -1,4 +1,5 @@
import qs.modules.common
import qs.modules.common.functions
import QtQuick
import QtQuick.Effects
import Quickshell
@@ -54,7 +55,7 @@ LazyLoader {
anchors.centerIn: parent
implicitWidth: root.contentItem.implicitWidth + margin * 2
implicitHeight: root.contentItem.implicitHeight + margin * 2
color: Appearance.colors.colSurfaceContainer
color: ColorUtils.applyAlpha(Appearance.colors.colSurfaceContainer, 1 - Appearance.backgroundTransparency)
radius: Appearance.rounding.small
children: [root.contentItem]