From b09043e6eed8e8f63d804328551c2508d23b885b Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Wed, 13 Aug 2025 16:38:21 +0200 Subject: [PATCH] Stop NotificationHistory from clipping, move to Modules/Notification/ --- Modules/{Bar => Notification}/NotificationHistoryPanel.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename Modules/{Bar => Notification}/NotificationHistoryPanel.qml (98%) diff --git a/Modules/Bar/NotificationHistoryPanel.qml b/Modules/Notification/NotificationHistoryPanel.qml similarity index 98% rename from Modules/Bar/NotificationHistoryPanel.qml rename to Modules/Notification/NotificationHistoryPanel.qml index ffd16fa..0fc0aac 100644 --- a/Modules/Bar/NotificationHistoryPanel.qml +++ b/Modules/Notification/NotificationHistoryPanel.qml @@ -152,12 +152,12 @@ NLoader { Layout.fillHeight: true model: NotificationService.historyModel spacing: Style.marginMedium * scaling - clip: true + clip: false boundsBehavior: Flickable.StopAtBounds delegate: Rectangle { width: notificationList ? (notificationList.width - 20) : 380 * scaling - height: 80 + height: Math.max(80, notificationContent.height + 30) radius: Style.radiusMedium * scaling color: notificationMouseArea.containsMouse ? Colors.accentPrimary : "transparent" @@ -170,6 +170,7 @@ NLoader { // Notification content Column { + id: notificationContent Layout.fillWidth: true Layout.alignment: Qt.AlignVCenter spacing: 5