Index: sources/gui/qml/compounds/Fader.qml =================================================================== diff -u -r8f83b92860a33498ea7856e63afef0a10ee11923 -r1c18f738693756ca1f0342c2cc158e32bc28f90b --- sources/gui/qml/compounds/Fader.qml (.../Fader.qml) (revision 8f83b92860a33498ea7856e63afef0a10ee11923) +++ sources/gui/qml/compounds/Fader.qml (.../Fader.qml) (revision 1c18f738693756ca1f0342c2cc158e32bc28f90b) @@ -28,22 +28,22 @@ property string fadingProperyName : "" property var fadingProperyValue : undefined - loops : Animation.Infinite - alwaysRunToEnd : true - running : // TODO : it has some bugs if while is runnig background changes, but since it has been used for fault mode we may not get any other message level. - fadingProperyTarget.visible - && fadingProperyRunning - ColorAnimation { - target : fadingProperyTarget - property : fadingProperyName - to : Qt.darker(fadingProperyValue) - duration : 1000 - } - - ColorAnimation { - target : fadingProperyTarget - property : fadingProperyName - to : fadingProperyValue - duration : 1000 - } + // loops : Animation.Infinite + // alwaysRunToEnd : true + // running : // TODO : it has some bugs if while is runnig background changes, but since it has been used for fault mode we may not get any other message level. + // fadingProperyTarget.visible + // && fadingProperyRunning + // ColorAnimation { + // target : fadingProperyTarget + // property : fadingProperyName + // to : Qt.darker(fadingProperyValue) + // duration : 1000 + // } + // + // ColorAnimation { + // target : fadingProperyTarget + // property : fadingProperyName + // to : fadingProperyValue + // duration : 1000 + // } }