diff --git a/src/qml/AlbumView.qml b/src/qml/AlbumView.qml --- a/src/qml/AlbumView.qml +++ b/src/qml/AlbumView.qml @@ -97,13 +97,13 @@ onGoBack: viewManager.goBack() Loader { - anchors.fill: parent + anchors.centerIn: parent visible: realModel.isBusy active: realModel.isBusy sourceComponent: BusyIndicator { - anchors.fill: parent + anchors.centerIn: parent } } } diff --git a/src/qml/DataGridView.qml b/src/qml/DataGridView.qml --- a/src/qml/DataGridView.qml +++ b/src/qml/DataGridView.qml @@ -71,13 +71,13 @@ onGoBack: viewManager.goBack() Loader { - anchors.fill: parent + anchors.centerIn: parent visible: realModel.isBusy active: realModel.isBusy sourceComponent: BusyIndicator { - anchors.fill: parent + anchors.centerIn: parent } } } diff --git a/src/qml/FrequentlyPlayedTracks.qml b/src/qml/FrequentlyPlayedTracks.qml --- a/src/qml/FrequentlyPlayedTracks.qml +++ b/src/qml/FrequentlyPlayedTracks.qml @@ -85,13 +85,13 @@ } Loader { - anchors.fill: parent + anchors.centerIn: parent visible: realModel.isBusy active: realModel.isBusy sourceComponent: BusyIndicator { - anchors.fill: parent + anchors.centerIn: parent } } } diff --git a/src/qml/GridBrowserDelegate.qml b/src/qml/GridBrowserDelegate.qml --- a/src/qml/GridBrowserDelegate.qml +++ b/src/qml/GridBrowserDelegate.qml @@ -200,10 +200,10 @@ Loader { active: isPartial - anchors.fill: parent + anchors.centerIn: parent sourceComponent: BusyIndicator { - anchors.fill: parent + anchors.centerIn: parent running: true } diff --git a/src/qml/RecentlyPlayedTracks.qml b/src/qml/RecentlyPlayedTracks.qml --- a/src/qml/RecentlyPlayedTracks.qml +++ b/src/qml/RecentlyPlayedTracks.qml @@ -85,13 +85,13 @@ } Loader { - anchors.fill: parent + anchors.centerIn: parent visible: realModel.isBusy active: realModel.isBusy sourceComponent: BusyIndicator { - anchors.fill: parent + anchors.centerIn: parent } } } diff --git a/src/qml/TracksView.qml b/src/qml/TracksView.qml --- a/src/qml/TracksView.qml +++ b/src/qml/TracksView.qml @@ -85,13 +85,13 @@ } Loader { - anchors.fill: parent + anchors.centerIn: parent visible: realModel.isBusy active: realModel.isBusy sourceComponent: BusyIndicator { - anchors.fill: parent + anchors.centerIn: parent } } }