From e4391f89f9223b6da40e589054919a950a6b0627 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Thu, 21 Aug 2025 13:23:13 +0200 Subject: [PATCH] Remove scrollbar from Notification History --- Modules/Notification/NotificationHistoryPanel.qml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/Modules/Notification/NotificationHistoryPanel.qml b/Modules/Notification/NotificationHistoryPanel.qml index fb116bb1..36a81096 100644 --- a/Modules/Notification/NotificationHistoryPanel.qml +++ b/Modules/Notification/NotificationHistoryPanel.qml @@ -108,7 +108,7 @@ NPanel { visible: NotificationService.historyModel.count > 0 delegate: Rectangle { - width: notificationList ? (notificationList.width - 20) : 380 * scaling + width: notificationList ? notificationList.width : 380 * scaling height: Math.max(80, notificationContent.height + 30) radius: Style.radiusM * scaling color: notificationMouseArea.containsMouse ? Color.mPrimary : Color.mSurfaceVariant @@ -177,12 +177,7 @@ NPanel { } } - ScrollBar.vertical: ScrollBar { - active: true - anchors.right: parent.right - anchors.top: parent.top - anchors.bottom: parent.bottom - } + } } }