Index: sources/gui/qml/compounds/StepNavigationTitleBar.qml =================================================================== diff -u -rbed87eff8cfc2398d00eb62651c165f014880a1a -r8a9a7d5cb3e54aa73e499ddec62653893e7d5ca7 --- sources/gui/qml/compounds/StepNavigationTitleBar.qml (.../StepNavigationTitleBar.qml) (revision bed87eff8cfc2398d00eb62651c165f014880a1a) +++ sources/gui/qml/compounds/StepNavigationTitleBar.qml (.../StepNavigationTitleBar.qml) (revision 8a9a7d5cb3e54aa73e499ddec62653893e7d5ca7) @@ -26,8 +26,11 @@ */ Rectangle { id: _root property int stepIndex : 0 + property int subStepIndex : 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 @@ -65,6 +68,8 @@ currentStepIndex: _root.stepIndex spacerLineLength: _root.stepLineLength stepNames : _root.stepNames + subStepIndex : _root.subStepIndex + subSteps : _root.subSteps } } }