From ef5936d0ab58b79d55d79da0c77627f09676691d Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 18 Sep 2025 23:39:23 +1000 Subject: notifs: persistent notifs + better sidebar notifs --- modules/sidebar/NotifDock.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/sidebar/NotifDock.qml') diff --git a/modules/sidebar/NotifDock.qml b/modules/sidebar/NotifDock.qml index 36b6665..490eeb8 100644 --- a/modules/sidebar/NotifDock.qml +++ b/modules/sidebar/NotifDock.qml @@ -160,8 +160,9 @@ Item { repeat: true interval: 50 onTriggered: { - Notifs.list[0]?.notification.dismiss(); - if (Notifs.list.length === 0) + if (Notifs.list.length > 0) + Notifs.list[0].close(); + else stop(); } } -- cgit v1.2.3-freya