From 5adc0c464a82fc475f65a0a1f438d5d79998db81 Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 18 Jun 2026 15:49:53 -0400 Subject: [PATCH] toast: fix blur --- quickshell/Modules/Toast.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/quickshell/Modules/Toast.qml b/quickshell/Modules/Toast.qml index e38e47e2..b441294f 100644 --- a/quickshell/Modules/Toast.qml +++ b/quickshell/Modules/Toast.qml @@ -441,4 +441,14 @@ PanelWindow { mask: Region { item: toast } + + WindowBlur { + targetWindow: root + blurEnabled: root.shouldBeVisible + blurX: toast.x + blurY: toast.y + blurWidth: root.shouldBeVisible ? toast.width : 0 + blurHeight: root.shouldBeVisible ? toast.height : 0 + blurRadius: toast.radius + } }