diff --git a/data/qml/StationView.qml b/data/qml/StationView.qml
index e0e0c9ae7..97a2897dd 100644
--- a/data/qml/StationView.qml
+++ b/data/qml/StationView.qml
@@ -65,16 +65,6 @@ Rectangle {
height: stationListView.height
width: stationListView.width
- Image {
- id: busyIndicator
- source: "../images/advanced-settings.svg"
- anchors.centerIn: parent
- height: defaultFontHeight * 4
- width: height
- visible: mainView.loading
- RotationAnimation { target: busyIndicator; from: 360; to: 0; duration: 1500; running: visible; loops: Animation.Infinite }
- }
-
CoverFlip {
id: coverView
anchors.fill: parent
@@ -94,6 +84,23 @@ Rectangle {
}
}
+ Image {
+ id: busyIndicator
+ source: "../images/loading-animation.svg"
+ anchors.centerIn: parent
+ height: defaultFontHeight * 4
+ width: height
+ visible: mainView.loading
+ RotationAnimation {
+ target: busyIndicator
+ from: 0
+ to: 360
+ duration: 1500
+ running: true
+ loops: Animation.Infinite
+ }
+ }
+
}
}
diff --git a/resources.qrc b/resources.qrc
index e969179eb..22a052106 100644
--- a/resources.qrc
+++ b/resources.qrc
@@ -170,5 +170,6 @@
data/qml/DeclarativeHeader.qml
data/images/inputfield-border.svg
data/images/search-box-dismiss-x.svg
+ data/images/loading-animation.svg