Skip to content

Commit

Permalink
Merge pull request #3484 from MerginMaps/fix/loadingIconPosition
Browse files Browse the repository at this point in the history
Fixing BusyIndicator position in ProjectList
  • Loading branch information
tomasMizera authored Jun 5, 2024
2 parents ba4e93f + e6b679e commit aa0b71d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions app/qml/project/MMProjectList.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}

Expand Down

0 comments on commit aa0b71d

Please sign in to comment.