Index: sources/gui/qml/components/TreatmentCompleteButton.qml =================================================================== diff -u -rca05e940ea4a0c567acb05c4c8777dea079b0f08 -r56b0b13aa9f9e7ae201bce1843015fe5b4b43d2c --- sources/gui/qml/components/TreatmentCompleteButton.qml (.../TreatmentCompleteButton.qml) (revision ca05e940ea4a0c567acb05c4c8777dea079b0f08) +++ sources/gui/qml/components/TreatmentCompleteButton.qml (.../TreatmentCompleteButton.qml) (revision 56b0b13aa9f9e7ae201bce1843015fe5b4b43d2c) @@ -21,13 +21,13 @@ SequentialAnimation on scale { loops : Animation.Infinite - running : true + running : _root.visible NumberAnimation { from: 0.9; to: 1.1; duration: 1000; easing.type: Easing.InOutQuad } } SequentialAnimation on opacity { loops : Animation.Infinite - running : true + running : _root.visible NumberAnimation { from: 1.0; to: 0.0; duration: 1000; easing.type: Easing.InOutQuad } } }