Index: sources/gui/qml/components/StepIndicator.qml =================================================================== diff -u -rf688ed9f1c64a2603a6d10fbb090b257a43e1f6f -rac07818fa03e65ff3601535b790bb6cb4e34f731 --- sources/gui/qml/components/StepIndicator.qml (.../StepIndicator.qml) (revision f688ed9f1c64a2603a6d10fbb090b257a43e1f6f) +++ sources/gui/qml/components/StepIndicator.qml (.../StepIndicator.qml) (revision ac07818fa03e65ff3601535b790bb6cb4e34f731) @@ -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