diff options
Diffstat (limited to 'services')
| -rw-r--r-- | services/Notifs.qml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/services/Notifs.qml b/services/Notifs.qml index 46b13a5..7326198 100644 --- a/services/Notifs.qml +++ b/services/Notifs.qml @@ -36,11 +36,10 @@ Singleton { onNotification: notif => { notif.tracked = true; - if (!props.dnd) - root.list.push(notifComp.createObject(root, { - popup: true, - notification: notif - })); + root.list.push(notifComp.createObject(root, { + popup: !props.dnd, + notification: notif + })); } } |