mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
fix: make clearing work
This commit is contained in:
parent
c98690fa63
commit
04732abbc8
1 changed files with 2 additions and 1 deletions
|
|
@ -23,10 +23,11 @@ Singleton {
|
|||
for (const notification of notificationServer.trackedNotifications.values) {
|
||||
notification.tracked = false;
|
||||
}
|
||||
list.length = 0;
|
||||
}
|
||||
|
||||
// TODO: use signal
|
||||
property list<Notification> list: notificationServer.trackedNotifications.values.filter(notification => notification.tracked)
|
||||
property list<Notification> list: notificationServer.trackedNotifications.values.filter(notification => notification.tracked).reverse()
|
||||
signal notification(Notification notification)
|
||||
|
||||
IpcHandler {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue