Index: sources/gui/qml/components/RangeMarker.qml =================================================================== diff -u -ra6ad83a73eb80978261a408ee5a92fbc8f7faa4e -rde68fcc0e2885ef78670ce8edf5e10f88b705d8d --- sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision a6ad83a73eb80978261a408ee5a92fbc8f7faa4e) +++ sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision de68fcc0e2885ef78670ce8edf5e10f88b705d8d) @@ -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