From 89d46c1b2fd1a35a3229511f745205ac4956bf9e Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 20 Sep 2025 15:47:44 +1000 Subject: sidebar/notifs: better anims + misc fixes --- modules/lock/NotifDock.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'modules/lock/NotifDock.qml') diff --git a/modules/lock/NotifDock.qml b/modules/lock/NotifDock.qml index ac40319..7551e68 100644 --- a/modules/lock/NotifDock.qml +++ b/modules/lock/NotifDock.qml @@ -84,7 +84,10 @@ ColumnLayout { clip: true model: ScriptModel { - values: [...new Set(Notifs.list.map(notif => notif.appName))].reverse() + values: { + const list = Notifs.notClosed.map(n => [n.appName, null]); + return [...new Map(list).keys()]; + } } delegate: NotifGroup {} -- cgit v1.2.3-freya