fix: remove expired notifications from toasts

This commit is contained in:
nydragon 2025-02-08 13:23:48 +01:00
parent 51f3bdd7cb
commit f082e17395
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -46,6 +46,11 @@ PanelWindow {
notif: n notif: n
}); });
}); });
Notifications.incomingRemoved.connect(n => {
for (let i = 0; i < data.count; ++i)
if (data.get(i).id == n)
return data.remove(i);
});
} }
} }
addDisplaced: Transition { addDisplaced: Transition {