From 269a832ac979644d000965703087e4f3734e3886 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Sun, 3 Mar 2024 16:56:18 +0100 Subject: [PATCH] Fix binding loop in NotificationsView --- src/qml/NotificationsView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/NotificationsView.qml b/src/qml/NotificationsView.qml index d0874287a..cbf5ad9fc 100644 --- a/src/qml/NotificationsView.qml +++ b/src/qml/NotificationsView.qml @@ -35,7 +35,7 @@ Kirigami.ScrollablePage { } footer: Kirigami.PlaceholderMessage { - anchors.horizontalCenter: parent.horizontalCenter + width: parent.width text: i18n("Loading…") visible: notificationsModel.nextToken.length > 0 && listView.count > 0 }