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