Index: sources/gui/qml/compounds/Fader.qml =================================================================== diff -u -r8f83b92860a33498ea7856e63afef0a10ee11923 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/compounds/Fader.qml (.../Fader.qml) (revision 8f83b92860a33498ea7856e63afef0a10ee11923) +++ sources/gui/qml/compounds/Fader.qml (.../Fader.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * - * \file BackButton.qml + * \file Fader.qml * \author (last) Behrouz NematiPour - * \date (last) 11-May-2021 + * \date (last) 01-Jul-2021 * \author (original) Behrouz NematiPour * \date (original) 11-May-2021 * @@ -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 + // } }