Index: sources/gui/qml/components/RangeMarker.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r526fb054edbbeebdcce33ca630ae08ba04067fac --- sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision 526fb054edbbeebdcce33ca630ae08ba04067fac) @@ -31,6 +31,7 @@ property color color : Colors.rangeMarker property alias thickness : _root.width property alias hasHandle : _handle.visible + property bool valueOnTop : false height: parent.height width : Variables.rangeMarkerWidth @@ -69,9 +70,10 @@ } anchors { right : parent.left - top : parent.top - rightMargin: 5 - topMargin : -5 + top : valueOnTop ? undefined : parent.top + bottom : valueOnTop ? _handle.top : undefined + rightMargin: valueOnTop ? -8 : 5 + topMargin : valueOnTop ? 0 : -5 } color : _root.color text : value.toFixed(decimal)