diff --git a/Modules/Notification/NotificationHistoryPanel.qml b/Modules/Notification/NotificationHistoryPanel.qml index fb116bb..36a8109 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 - } + } } }