diff --git a/kde/look-and-feel/contents/splash/Splash.qml b/kde/look-and-feel/contents/splash/Splash.qml index be4cb31..f2a2a39 100644 --- a/kde/look-and-feel/contents/splash/Splash.qml +++ b/kde/look-and-feel/contents/splash/Splash.qml @@ -63,33 +63,33 @@ Image { Image { id: busyIndicator - y: parent.height - (parent.height - logo.y) / 3 - height/2 - anchors.horizontalCenter: parent.horizontalCenter - source: "images/busy.svg" - sourceSize.height: units.gridUnit * 3 - sourceSize.width: units.gridUnit * 3 - - ParallelAnimation{ - running: true - - ScaleAnimator{ - target: busyIndicator - from: 0 - to: 1 - duration: 800 - } - - RotationAnimator{ - target: busyIndicator - id: rotationAnimator - from: 0 - to: 360 - duration: 800 - loops: Animation.Infinite - } + source: "images/busy03.svg" + anchors.centerIn: parent + sourceSize.height: 200 + sourceSize.width: 200 + RotationAnimator on rotation { + id: rotationAnimator + from: 0 + to: 360 + duration: 2000 + loops: Animation.Infinite } } + Image { + id: busyIndicator2 + source: "images/busy03.svg" + anchors.centerIn: parent + sourceSize.height: 250 + sourceSize.width: 250 + RotationAnimator on rotation { + id: rotationAnimator2 + from: 360 + to: 0 + duration: 2000 + loops: Animation.Infinite + } + } } OpacityAnimator { diff --git a/kde/look-and-feel/contents/splash/images/busy03.svg b/kde/look-and-feel/contents/splash/images/busy03.svg new file mode 100644 index 0000000..4a4afdd --- /dev/null +++ b/kde/look-and-feel/contents/splash/images/busy03.svg @@ -0,0 +1 @@ + \ No newline at end of file