From d817449e6b244857e055dfcbf67e8ca21ab2e550 Mon Sep 17 00:00:00 2001 From: SomeElse Date: Mon, 27 Apr 2026 08:08:26 +0000 Subject: [PATCH] fixed notifications popup menu reserving too much space for the next card --- bar/modules/Notifications.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bar/modules/Notifications.qml b/bar/modules/Notifications.qml index cfad90d..e2dc57b 100644 --- a/bar/modules/Notifications.qml +++ b/bar/modules/Notifications.qml @@ -276,7 +276,7 @@ Rectangle { Rectangle { id: historyCard width: parent.width - height: Math.min(histHeader.implicitHeight + 56 + (notifHistory.count > 0 ? notifHistory.count * 76 : 90), 520) + height: Math.min(histHeader.implicitHeight + 56 + (notifHistory.count > 0 ? histCol.implicitHeight : 90), 520) anchors.top: root.isTop ? parent.top : undefined anchors.bottom: root.isTop ? undefined : parent.bottom