From d990d684726e83e3591db4ee2ea7c9db1bed0e53 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 15 Nov 2025 17:22:32 +0100 Subject: [PATCH] not use anchors in children items in notif list view --- .../ii/modules/common/widgets/NotificationListView.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/NotificationListView.qml b/dots/.config/quickshell/ii/modules/common/widgets/NotificationListView.qml index 1b68059d0..ec76349bb 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/NotificationListView.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/NotificationListView.qml @@ -18,10 +18,9 @@ StyledListView { // Scrollable window required property int index required property var modelData popup: root.popup - anchors.left: parent?.left - anchors.right: parent?.right + width: ListView.view.width // https://doc.qt.io/qt-6/qml-qtquick-listview.html notificationGroup: popup ? Notifications.popupGroupsByAppName[modelData] : Notifications.groupsByAppName[modelData] } -} \ No newline at end of file +}