From 542495c74faff1285fa7371d2e5cbb2e5294ef9d Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 17 Sep 2025 00:08:57 +1000 Subject: notifs: fix dnd --- services/Notifs.qml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'services') 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 + })); } } -- cgit v1.2.3-freya