diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-20 16:21:42 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-20 16:21:42 +1000 |
| commit | 5f1ffb32f41d40e0404a81fb9b834a1f12d60a5b (patch) | |
| tree | 8cf601e32b93ebae525af6e1ce846c22d1f4344d /modules/sidebar/NotifGroup.qml | |
| parent | sidebar/notifs: dimmer action text (diff) | |
| download | caelestia-shell-5f1ffb32f41d40e0404a81fb9b834a1f12d60a5b.tar.gz caelestia-shell-5f1ffb32f41d40e0404a81fb9b834a1f12d60a5b.tar.bz2 caelestia-shell-5f1ffb32f41d40e0404a81fb9b834a1f12d60a5b.zip | |
sidebar/notifs: fix interactions outside container
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 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<var> 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) } } |