Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -rc65859e54930664100dfdff13afa019e05ae23b6 --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision c65859e54930664100dfdff13afa019e05ae23b6) @@ -40,6 +40,7 @@ property alias handler : _handler property alias handlerColor : _handler.color property alias handlerVisible : _handler.visible + property color handleBorderColor : Colors.textMain property alias diameter : _handler.diameter @@ -52,6 +53,7 @@ property bool isRoundedEnds : true property bool hasBorder : true + property bool showMinMaxText : true property color borderColor : Colors.borderDisableButton signal activeChanged() @@ -161,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 @@ -341,7 +343,7 @@ color : Colors.highlightProgressBar border { width: Variables.progressbarHandlerBorderWidth - color: Colors.textMain + color: _root.handleBorderColor } MouseArea { anchors.fill: parent