From f3276c30391df582ed969b99699e61e54b339727 Mon Sep 17 00:00:00 2001 From: bbedward Date: Mon, 8 Dec 2025 20:46:22 -0500 Subject: [PATCH] notification: fix closing popout from escape fixes #953 --- .../Modules/Notifications/Center/NotificationCenterPopout.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Modules/Notifications/Center/NotificationCenterPopout.qml b/quickshell/Modules/Notifications/Center/NotificationCenterPopout.qml index 64b20855..25e041c7 100644 --- a/quickshell/Modules/Notifications/Center/NotificationCenterPopout.qml +++ b/quickshell/Modules/Notifications/Center/NotificationCenterPopout.qml @@ -138,7 +138,7 @@ DankPopout { Keys.onPressed: event => { if (event.key === Qt.Key_Escape) { - root.close(); + notificationHistoryVisible = false; event.accepted = true; } else if (externalKeyboardController) { externalKeyboardController.handleKey(event);