Index: sources/gui/qml/compounds/AutoStepController.qml =================================================================== diff -u -rd66feb12d37023f6f67672ff4acdb5abebdbff15 -rd00eeb4a8b354eade40a0853c022eb03ea4ae233 --- sources/gui/qml/compounds/AutoStepController.qml (.../AutoStepController.qml) (revision d66feb12d37023f6f67672ff4acdb5abebdbff15) +++ sources/gui/qml/compounds/AutoStepController.qml (.../AutoStepController.qml) (revision d00eeb4a8b354eade40a0853c022eb03ea4ae233) @@ -5,7 +5,8 @@ Item { id: _root property int interval : 5000 - property bool isPlaying : false // initial state + property bool isPlaying : true + property string color : Colors.modeAutoStepColor height : 35 @@ -38,6 +39,7 @@ isDefault : true borderColor : Colors.transparent onClicked : _root.isPlaying = ! _root.isPlaying + backgroundColor : _root.color ProgressCircle { id: _progress anchors.fill : parent @@ -46,7 +48,7 @@ maximum : 100 thickness : 4 visible : _root.isPlaying - color : Colors.statusTextPaused + color : Colors.borderButton circleShadowColor : Colors.transparent // Smooth progress animation @@ -68,7 +70,7 @@ } text : qsTr("Tap step to view image, or press play to cycle.") - color : "#3682ED" + color : _root.color font { pixelSize : 30 weight : Font.Medium