Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -r67557d6769a1719e2a1c068303bda9816075dd84 -rc65859e54930664100dfdff13afa019e05ae23b6 --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 67557d6769a1719e2a1c068303bda9816075dd84) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision c65859e54930664100dfdff13afa019e05ae23b6) @@ -53,6 +53,7 @@ property bool isRoundedEnds : true property bool hasBorder : true + property bool showMinMaxText : true property color borderColor : Colors.borderDisableButton signal activeChanged() @@ -162,13 +163,13 @@ } minText { - visible : true + visible : _root.showMinMaxText anchors.topMargin: Variables.sliderTextMargin font.pixelSize : Fonts.fontPixelSliderMarker font.bold : false } maxText { - visible : true + visible : _root.showMinMaxText anchors.topMargin: Variables.sliderTextMargin font.pixelSize : Fonts.fontPixelSliderMarker font.bold : false