Index: sources/gui/qml/components/RangeMarker.qml =================================================================== diff -u -r0022c3993c47e74c2d17c7f07f78fa1751a034f6 -rbea36be2766046e63c4e82539a630b5cee7ce1c6 --- sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision 0022c3993c47e74c2d17c7f07f78fa1751a034f6) +++ sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision bea36be2766046e63c4e82539a630b5cee7ce1c6) @@ -28,11 +28,9 @@ property int decimal : 0 property alias text : _textValue - property alias handle : _handle property alias font : _textValue.font property color color : Colors.rangeMarker property alias thickness : _root.width - property alias hasHandle : _handle.visible property bool valueOnTop : false property string unitText : "" @@ -43,19 +41,6 @@ bottom : parent.bottom } - Rectangle { id: _handle - visible : false - - width : _root.width * 3 - height : width - radius : width - color : _root.color - anchors { - top : _root.top - horizontalCenter: parent.horizontalCenter - } - } - Rectangle { id: _stick width : _root.width height : _root.height @@ -75,12 +60,12 @@ right : valueOnTop ? parent.left : undefined top : valueOnTop ? undefined : parent.top - bottom : valueOnTop ? _handle.top : + bottom : valueOnTop ? _stick.top : undefined bottomMargin: valueOnTop ? 5 : 0 rightMargin : valueOnTop ? -12 : 5 topMargin : valueOnTop ? 0 : -5 - horizontalCenter: valueOnTop ? _handle.horizontalCenter : undefined + horizontalCenter: valueOnTop ? _stick.horizontalCenter : undefined horizontalCenterOffset: { if (valueOnTop) { if (_root.parent !== undefined) {