From e6b679e37c29aac1f6822fc58b31704ec762f433 Mon Sep 17 00:00:00 2001 From: VitorVieiraZ Date: Fri, 31 May 2024 12:07:52 -0300 Subject: [PATCH] bug fix --- app/qml/project/MMProjectList.qml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app/qml/project/MMProjectList.qml b/app/qml/project/MMProjectList.qml index 2bfe86f83..2b12e41b7 100644 --- a/app/qml/project/MMProjectList.qml +++ b/app/qml/project/MMProjectList.qml @@ -182,9 +182,14 @@ Item { Component { id: loadingSpinnerComponent - MMComponents.MMBusyIndicator { - x: parent.width / 2 - width / 2 - running: controllerModel.isLoading + Item { + width:listview.width + height: listview.height + + MMComponents.MMBusyIndicator { + anchors.centerIn: parent + running: controllerModel.isLoading + } } }