From 603e1c09b39ee57f6ea94f45b117360736816358 Mon Sep 17 00:00:00 2001 From: nydragon Date: Sat, 8 Feb 2025 13:23:48 +0100 Subject: [PATCH] fix: remove expired notifications from toasts --- src/windows/notificationtoast/NotificationToasts.qml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/windows/notificationtoast/NotificationToasts.qml b/src/windows/notificationtoast/NotificationToasts.qml index dd36e56..4a6c36f 100644 --- a/src/windows/notificationtoast/NotificationToasts.qml +++ b/src/windows/notificationtoast/NotificationToasts.qml @@ -46,6 +46,15 @@ PanelWindow { notif: n }); }); + Notifications.incomingRemoved.connect(n => { + for (let i = 0; i < data.count; ++i) { + let dat = data.get(i); + if (data.id == n) { + data.visible = false; + return; + } + } + }); } } addDisplaced: Transition {