Index: sources/gui/qml/compounds/AutoStepController.qml =================================================================== diff -u -rd66feb12d37023f6f67672ff4acdb5abebdbff15 -r8f6ecb60abf6d47d4554cfd3019ca496d79b6f69 --- sources/gui/qml/compounds/AutoStepController.qml (.../AutoStepController.qml) (revision d66feb12d37023f6f67672ff4acdb5abebdbff15) +++ sources/gui/qml/compounds/AutoStepController.qml (.../AutoStepController.qml) (revision 8f6ecb60abf6d47d4554cfd3019ca496d79b6f69) @@ -5,7 +5,8 @@ Item { id: _root property int interval : 5000 - property bool isPlaying : false // initial state + property bool isPlaying : true + property string color : _colorMode.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 : _colorMode.modeAutoStepProgressColor 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