Index: sources/gui/qml/compounds/StepNavigationTitleBar.qml =================================================================== diff -u -r4a2b83dcb56555861d2c741a8e8894e5b07e24bf -r8a9a7d5cb3e54aa73e499ddec62653893e7d5ca7 --- sources/gui/qml/compounds/StepNavigationTitleBar.qml (.../StepNavigationTitleBar.qml) (revision 4a2b83dcb56555861d2c741a8e8894e5b07e24bf) +++ sources/gui/qml/compounds/StepNavigationTitleBar.qml (.../StepNavigationTitleBar.qml) (revision 8a9a7d5cb3e54aa73e499ddec62653893e7d5ca7) @@ -27,10 +27,10 @@ Rectangle { id: _root property int stepIndex : 0 property int subStepIndex : 0 - property int subStepsLength : 0 property int stepLineLength : 125 property var stepNames : [] + property var subSteps : [] property alias backVisible : _backButton .visible property alias backEnabled : _backButton .enabled property alias confirmVisible : _confirmButton.visible @@ -69,7 +69,7 @@ spacerLineLength: _root.stepLineLength stepNames : _root.stepNames subStepIndex : _root.subStepIndex - subStepsLength : _root.subStepsLength + subSteps : _root.subSteps } } }