Index: sources/gui/qml/components/Circle.qml =================================================================== diff -u -r8fa24e534368d2baad16f262d31630996798977f -r7caa737179a8c31825ae6445f593ac7ff5f95080 --- sources/gui/qml/components/Circle.qml (.../Circle.qml) (revision 8fa24e534368d2baad16f262d31630996798977f) +++ sources/gui/qml/components/Circle.qml (.../Circle.qml) (revision 7caa737179a8c31825ae6445f593ac7ff5f95080) @@ -68,7 +68,6 @@ strokeColor: Colors.borderButton strokeWidth: 1 capStyle: ShapePath.RoundCap - PathAngleArc { id: _arc centerX: _root.width / 2 centerY: _root.height / 2 @@ -80,15 +79,15 @@ } } - ConicalGradient { - id: borderGradient + ConicalGradient { id: borderGradient anchors.fill: _shape - angle: -7 - source: _shape + angle : -7 + source : _shape gradient: Gradient { - GradientStop { position: 0.0; color: showGradient ? _root.startGradientColor :_root.color } + GradientStop { position: 0.0; color: showGradient ? _root.startGradientColor : + _root.color } GradientStop { position: 1.0; color: _root.color } } } @@ -118,6 +117,5 @@ ! runAnimation ? restart() : target.opacity = 1 } } - } }