Index: sources/gui/qml/components/StepIndicator.qml =================================================================== diff -u -r09ec5af58d98d8cd337359482e81045052a5c264 -r52d17dab2211c2e4d9160c55c316ad7a40ce4d6c --- sources/gui/qml/components/StepIndicator.qml (.../StepIndicator.qml) (revision 09ec5af58d98d8cd337359482e81045052a5c264) +++ sources/gui/qml/components/StepIndicator.qml (.../StepIndicator.qml) (revision 52d17dab2211c2e4d9160c55c316ad7a40ce4d6c) @@ -37,11 +37,14 @@ property int currentStepIndex : 0 property int diameter : 20 property int subStepIndex : 0 + property var currentStep : [] width : _row.width height : _row.height color : Colors.transparent + onCurrentStepChanged : print (currentStep) + Row { id: _row spacing : _root.spacing anchors.centerIn: parent @@ -79,7 +82,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]