Index: sources/gui/qml/components/ProgressCircle.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r77ba0083b790f7c1c851c60ecaeaa4f2e7eff7a8 --- sources/gui/qml/components/ProgressCircle.qml (.../ProgressCircle.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/ProgressCircle.qml (.../ProgressCircle.qml) (revision 77ba0083b790f7c1c851c60ecaeaa4f2e7eff7a8) @@ -28,8 +28,12 @@ property int maximum : 0 property int value : minimum property alias diameter : _circle.diameter - property alias thickness : _circle.thickness - property color color : Colors.borderButton + property alias thickness: _circle.thickness + property color color : _circle.runAnimation ? Colors.borderButton : + Colors.pauseColor + property color circleShadowColor : Colors.backgroundMainMenu + property color circleFillColor : Colors.transparent + property alias runAnimation : _circle.runAnimation width : _circle.width height : _circle.height @@ -41,8 +45,9 @@ Circle { id: _circle anchors.centerIn: parent color : _root.color - shadow.color : Colors.backgroundMainMenu + shadow.color : _root.circleShadowColor angle : _private.value thickness : 2 + fillColor : _root.circleFillColor } }