Index: sources/gui/qml/components/Circle.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r23f8a6036e22f80c3c5fd2834a2980bb62d2a34d --- sources/gui/qml/components/Circle.qml (.../Circle.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/Circle.qml (.../Circle.qml) (revision 23f8a6036e22f80c3c5fd2834a2980bb62d2a34d) @@ -39,6 +39,8 @@ property real diameter : Variables.circleNormalDiameter + property bool runAnimation : false + width : diameter height : diameter @@ -72,5 +74,18 @@ } } } + + OpacityAnimator { target: _shape + from : 0.2 + to : 1 + duration : 1000 + running : ! runAnimation + onFinished : { + var tmp = from + from = to + to = tmp + ! runAnimation ? restart() : target.opacity = 1 + } + } } }