From 9523fdf0ebc7f98e0639ac5df2c5d2a25a8abaef Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 21 Sep 2025 14:24:35 +1000 Subject: sidebar/notifs: add link support --- modules/sidebar/NotifGroup.qml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/sidebar/NotifGroup.qml') 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 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) } } -- cgit v1.2.3-freya