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/NotifDock.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/NotifDock.qml')
| -rw-r--r-- | modules/sidebar/NotifDock.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/sidebar/NotifDock.qml b/modules/sidebar/NotifDock.qml index 219ae7c..b915ed9 100644 --- a/modules/sidebar/NotifDock.qml +++ b/modules/sidebar/NotifDock.qml @@ -15,6 +15,7 @@ Item { id: root required property Props props + required property var visibilities readonly property int notifCount: Notifs.list.reduce((acc, n) => n.closed ? acc : acc + 1, 0) anchors.fill: parent @@ -140,6 +141,7 @@ Item { id: notifList props: root.props + visibilities: root.visibilities container: view } } |