diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-20 15:47:44 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-20 15:47:44 +1000 |
| commit | 89d46c1b2fd1a35a3229511f745205ac4956bf9e (patch) | |
| tree | aa5c7faed9c627b6933cdc533b540eb695af9dd9 /modules/lock/NotifDock.qml | |
| parent | sidebar/notifs: sort groups by latest notif (diff) | |
| download | caelestia-shell-89d46c1b2fd1a35a3229511f745205ac4956bf9e.tar.gz caelestia-shell-89d46c1b2fd1a35a3229511f745205ac4956bf9e.tar.bz2 caelestia-shell-89d46c1b2fd1a35a3229511f745205ac4956bf9e.zip | |
sidebar/notifs: better anims + misc fixes
Diffstat (limited to 'modules/lock/NotifDock.qml')
| -rw-r--r-- | modules/lock/NotifDock.qml | 5 |
1 files changed, 4 insertions, 1 deletions
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 {} |