Index: sources/gui/qml/components/StepIndicator.qml =================================================================== diff -u -r09ec5af58d98d8cd337359482e81045052a5c264 -r1a46e7e1fd9da0fcfa8359a194610c55adfff04f --- sources/gui/qml/components/StepIndicator.qml (.../StepIndicator.qml) (revision 09ec5af58d98d8cd337359482e81045052a5c264) +++ sources/gui/qml/components/StepIndicator.qml (.../StepIndicator.qml) (revision 1a46e7e1fd9da0fcfa8359a194610c55adfff04f) @@ -37,6 +37,7 @@ property int currentStepIndex : 0 property int diameter : 20 property int subStepIndex : 0 + property var currentStep : [] width : _row.width height : _row.height @@ -79,7 +80,7 @@ horizontalCenter: parent.horizontalCenter } - subStepIndex : _root.subStepIndex + subStepIndex : _root.currentStep[index] ? _root.subStepIndex : 0 subStepsLength : _root.subSteps[index] ?? 0 height : 10 width : _stepsBullet.width * _root.subSteps[index]