Index: sources/gui/qml/components/ProgressBar.qml =================================================================== diff -u -r00e025a5d672cae66e592608792c17d98be54d19 -r732bc047743c99a157cf147f5313194867c1f5e3 --- sources/gui/qml/components/ProgressBar.qml (.../ProgressBar.qml) (revision 00e025a5d672cae66e592608792c17d98be54d19) +++ sources/gui/qml/components/ProgressBar.qml (.../ProgressBar.qml) (revision 732bc047743c99a157cf147f5313194867c1f5e3) @@ -30,7 +30,8 @@ property alias color : _progressRect.color property alias bgColor : _root.color - property alias markerHeight: _progressMarker.height + property alias markerHeight: _marker.height + property alias markerHandle: _marker.hasHandle height : Variables.progressbarHeight @@ -60,16 +61,15 @@ color : Colors.highlightProgressBar - ProgressMarker { id: _progressMarker - value : _root.value - height : Variables.progressMarkerHeight - text.font.pixelSize : Fonts.fontPixelProgressBarMarker - text.font.bold : true - // preferred positioning the marker - text.anchors.right : left - text.anchors.top : top - text.anchors.rightMargin: 5 - text.anchors.topMargin : -5 + RangeMarker { id: _marker + anchors { + left : parent.right + } + + height : Variables.rangeMarkerHeight + hasHandle : true + + value : _root.value } } }