Index: sources/gui/qml/components/StepIndicator.qml =================================================================== diff -u -rf688ed9f1c64a2603a6d10fbb090b257a43e1f6f -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/StepIndicator.qml (.../StepIndicator.qml) (revision f688ed9f1c64a2603a6d10fbb090b257a43e1f6f) +++ sources/gui/qml/components/StepIndicator.qml (.../StepIndicator.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,15 +1,15 @@ /*! * - * 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 StepIndicator.qml + * \file StepIndicator.qml * \author (last) Behrouz NematiPour - * \date (last) 11-Mar-2021 + * \date (last) 06-Jul-2021 * \author (original) Behrouz NematiPour - * \date (original) 01-Jan-2021 + * \date (original) 11-Jan-2021 * */ @@ -35,7 +35,9 @@ property int spacing : vertical ? 0 : 5 property int spacerLineLength : vertical ? 5 : 75 property int currentStepIndex : 0 + property int diameter : 15 + width : _gridSteps.width height : _gridSteps.height // Variables.topBarMenuHeight color : Colors.backgroundMain @@ -78,6 +80,7 @@ columnSpacing : _root.spacing anchors.centerIn: parent StepBullet { id: _headStepBullet + diameter : _root.diameter currentComplete : _root.currentComplete hideLabels : _root.hideLabels vertical : _root.vertical @@ -101,6 +104,7 @@ color : _nextStepsBullet.color } StepBullet { id: _nextStepsBullet + diameter : _root.diameter currentComplete : _root.currentComplete hideLabels : _root.hideLabels vertical : _root.vertical