From 5c29a6086af80dd2bd86d5802e38bcc9bb11bbe4 Mon Sep 17 00:00:00 2001 From: ly-sec Date: Fri, 18 Jul 2025 23:26:29 +0200 Subject: [PATCH] Tiny layout fix --- Widgets/Notification/NotificationHistory.qml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Widgets/Notification/NotificationHistory.qml b/Widgets/Notification/NotificationHistory.qml index ffdca25..be98dd0 100644 --- a/Widgets/Notification/NotificationHistory.qml +++ b/Widgets/Notification/NotificationHistory.qml @@ -15,7 +15,7 @@ PanelWithOverlay { id: notificationHistoryWinRect implicitWidth: 400 property int maxPopupHeight: 800 - property int minPopupHeight: 230 + property int minPopupHeight: 210 property int contentHeight: headerRow.height + historyList.contentHeight + 56 implicitHeight: Math.max(Math.min(contentHeight, maxPopupHeight), minPopupHeight) visible: parent.visible @@ -271,10 +271,7 @@ PanelWithOverlay { Column { anchors.fill: parent spacing: 0 - Item { - id: topSpacer - height: (parent.height - historyList.height) / 2 - } + ListView { id: historyList width: parent.width