Index: sources/gui/qml/components/RangeMarker.qml =================================================================== diff -u -r7db80dd579054dd4754ae4d135a4a3e647f09b5f -r3e91f569d10fe5b76298b85ee3a6875f80e33063 --- sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision 7db80dd579054dd4754ae4d135a4a3e647f09b5f) +++ sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision 3e91f569d10fe5b76298b85ee3a6875f80e33063) @@ -46,7 +46,7 @@ Rectangle { id: _handle visible : false - width : _root.width * 4 + width : _root.width * 3 height : width radius : width color : _root.color @@ -69,15 +69,15 @@ Text { id: _textValue font { pixelSize : Fonts.fontPixelRangeMarker - weight : Font.DemiBold + weight : Font.Bold } anchors { right : valueOnTop ? parent.left : undefined top : valueOnTop ? undefined : parent.top bottom : valueOnTop ? _handle.top : undefined - bottomMargin: valueOnTop ? 10 : 0 + bottomMargin: valueOnTop ? 5 : 0 rightMargin : valueOnTop ? -12 : 5 topMargin : valueOnTop ? 0 : -5 horizontalCenter: valueOnTop ? _handle.horizontalCenter : undefined