fix: remove expired notifications from toasts
This commit is contained in:
parent
51f3bdd7cb
commit
f082e17395
1 changed files with 5 additions and 0 deletions
|
@ -46,6 +46,11 @@ PanelWindow {
|
|||
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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue