From 5f1ffb32f41d40e0404a81fb9b834a1f12d60a5b Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 20 Sep 2025 16:21:42 +1000 Subject: sidebar/notifs: fix interactions outside container --- 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 4366060..8a3d970 100644 --- a/modules/sidebar/NotifGroup.qml +++ b/modules/sidebar/NotifGroup.qml @@ -15,6 +15,7 @@ StyledRect { required property string modelData required property Props props + required property Flickable container 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) @@ -231,6 +232,7 @@ StyledRect { props: root.props notifs: root.notifs expanded: root.expanded + container: root.container onRequestToggleExpand: expand => root.toggleExpand(expand) } } -- cgit v1.2.3-freya