Index: sources/gui/qml/components/StoppedSlider.qml =================================================================== diff -u -r86aaf030d6eb405f301f703aa68e6854db7eb5d1 -r018005dc067da01f25899ce83e4ce8f14e5013ae --- sources/gui/qml/components/StoppedSlider.qml (.../StoppedSlider.qml) (revision 86aaf030d6eb405f301f703aa68e6854db7eb5d1) +++ sources/gui/qml/components/StoppedSlider.qml (.../StoppedSlider.qml) (revision 018005dc067da01f25899ce83e4ce8f14e5013ae) @@ -38,9 +38,6 @@ signal pressed () signal released() - height : Variables.createTreatmentSliderHeight - width : Variables.createTreatmentSliderWidth - function reset(vValue) { _slider.reset(vValue) } @@ -77,13 +74,15 @@ pixelSize : Fonts.fontPixelButton weight : Font.Normal } + color : Colors.progressBarMinMax text : _root.minimum.toFixed(_root.decimal) + (_root.unit.length ? (" " + _root.unit) : "") } maxText { font { pixelSize : minText.font.pixelSize weight : minText.font.weight } + color : Colors.progressBarMinMax text : _root.maximum.toFixed(_root.decimal) + (_root.unit.length ? (" " + _root.unit) : "") }