diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-21 14:24:35 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-21 14:24:35 +1000 |
| commit | 9523fdf0ebc7f98e0639ac5df2c5d2a25a8abaef (patch) | |
| tree | a510eab2f41abf791957ba23dd1bdbcde08fbaa9 /modules/sidebar/NotifGroup.qml | |
| parent | [CI] chore: update flake (diff) | |
| download | caelestia-shell-9523fdf0ebc7f98e0639ac5df2c5d2a25a8abaef.tar.gz caelestia-shell-9523fdf0ebc7f98e0639ac5df2c5d2a25a8abaef.tar.bz2 caelestia-shell-9523fdf0ebc7f98e0639ac5df2c5d2a25a8abaef.zip | |
sidebar/notifs: add link support
Diffstat (limited to 'modules/sidebar/NotifGroup.qml')
| -rw-r--r-- | modules/sidebar/NotifGroup.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/sidebar/NotifGroup.qml b/modules/sidebar/NotifGroup.qml index c974ce3..c230a5c 100644 --- a/modules/sidebar/NotifGroup.qml +++ b/modules/sidebar/NotifGroup.qml @@ -16,6 +16,7 @@ StyledRect { required property string modelData required property Props props required property Flickable container + required property var visibilities readonly property list<var> notifs: Notifs.list.filter(n => n.appName === modelData) readonly property int notifCount: notifs.reduce((acc, n) => n.closed ? acc : acc + 1, 0) @@ -234,6 +235,7 @@ StyledRect { notifs: root.notifs expanded: root.expanded container: root.container + visibilities: root.visibilities onRequestToggleExpand: expand => root.toggleExpand(expand) } } |