From 41a46b7fa9b10c865cef931515a57f056f585b68 Mon Sep 17 00:00:00 2001 From: purian23 Date: Sat, 2 May 2026 22:44:20 -0400 Subject: [PATCH] fix(NotificationPopup): Update blur color base in non-connectedMode --- quickshell/Modules/Notifications/Popup/NotificationPopup.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Modules/Notifications/Popup/NotificationPopup.qml b/quickshell/Modules/Notifications/Popup/NotificationPopup.qml index a6711f0b..a29ecfa6 100644 --- a/quickshell/Modules/Notifications/Popup/NotificationPopup.qml +++ b/quickshell/Modules/Notifications/Popup/NotificationPopup.qml @@ -666,7 +666,7 @@ PanelWindow { sourceRect.width: Math.max(0, content.width - (content.cardInset * 2)) sourceRect.height: Math.max(0, content.height - (content.cardInset * 2)) sourceRect.radius: win.connectedFrameMode ? Theme.connectedSurfaceRadius : Theme.cornerRadius - sourceRect.color: Theme.floatingSurface + sourceRect.color: win.connectedFrameMode ? Theme.floatingSurface : Theme.readableSurface sourceRect.antialiasing: true sourceRect.layer.enabled: false sourceRect.layer.textureSize: Qt.size(0, 0)