diff --git a/services/Notifs.qml b/services/Notifs.qml index 46b13a5f..7326198d 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 + })); } }