Index: sources/gui/qml/components/ProgressCircle.qml =================================================================== diff -u -r68757118f0b5dc5d831f8330ff3fec40dc461aa9 -r23f8a6036e22f80c3c5fd2834a2980bb62d2a34d --- sources/gui/qml/components/ProgressCircle.qml (.../ProgressCircle.qml) (revision 68757118f0b5dc5d831f8330ff3fec40dc461aa9) +++ sources/gui/qml/components/ProgressCircle.qml (.../ProgressCircle.qml) (revision 23f8a6036e22f80c3c5fd2834a2980bb62d2a34d) @@ -28,9 +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 circle : _circle + 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 @@ -42,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 } }