From 7efc0d54eab5fc9af10dce9575023251376c0030 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 19 Sep 2025 22:59:45 +1000 Subject: sidebar/notifs: fix clear all button & expand bugs Disable expand on drag on notifs when expanded (fixes drag expansion bugs and feels better) Also add scrollbar --- modules/sidebar/NotifDock.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'modules/sidebar/NotifDock.qml') diff --git a/modules/sidebar/NotifDock.qml b/modules/sidebar/NotifDock.qml index 6ec8581..588811a 100644 --- a/modules/sidebar/NotifDock.qml +++ b/modules/sidebar/NotifDock.qml @@ -98,6 +98,8 @@ Item { values: [...new Set(Notifs.list.filter(n => !n.closed).map(n => n.appName))].reverse() } + StyledScrollBar.vertical: StyledScrollBar {} + delegate: MouseArea { id: notif @@ -218,7 +220,7 @@ Item { interval: 50 onTriggered: { if (root.notifCount > 0) - Notifs.list[0].close(); + Notifs.list.find(n => !n.closed).close(); else stop(); } @@ -239,7 +241,7 @@ Item { icon: "clear_all" radius: Appearance.rounding.normal padding: Appearance.padding.normal - font.pointSize: Math.round(Appearance.font.size.large * 1.3) + font.pointSize: Math.round(Appearance.font.size.large * 1.2) onClicked: clearTimer.start() Elevation { -- cgit v1.2.3-freya