Index: sources/gui/qml/components/ProgressCircle.qml =================================================================== diff -u -r074b32b5cc08f41f2d9ce0d021f2151b76bba5ad -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/ProgressCircle.qml (.../ProgressCircle.qml) (revision 074b32b5cc08f41f2d9ce0d021f2151b76bba5ad) +++ sources/gui/qml/components/ProgressCircle.qml (.../ProgressCircle.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,16 +1,16 @@ /*! - * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * + * Copyright (c) 2020-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 ProgressCircle.qml - * \author (last) Behrouz NematiPour - * \date (last) 27-Apr-2020 - * \author (original) Behrouz NematiPour - * \date (original) 04-Feb-2020 - * + * + * \file ProgressCircle.qml + * \author (last) Behrouz NematiPour + * \date (last) 29-Apr-2021 + * \author (original) Behrouz NematiPour + * \date (original) 04-Feb-2020 + * */ // Qt @@ -28,6 +28,8 @@ property int maximum : 0 property int value : minimum property alias diameter : _circle.diameter + property alias thickness : _circle.thickness + property color color : Colors.borderButton width : _circle.width height : _circle.height @@ -38,7 +40,9 @@ Circle { id: _circle anchors.centerIn: parent + color : _root.color shadow.color : Colors.backgroundMainMenu angle : _private.value + thickness : 2 } }