Index: sources/gui/qml/components/ProgressBar.qml =================================================================== diff -u -r670f257c9b88d3e5506eccaad111bec914102a72 -r6616f7b9b88efffa42ab605833d296afb76d3cb1 --- sources/gui/qml/components/ProgressBar.qml (.../ProgressBar.qml) (revision 670f257c9b88d3e5506eccaad111bec914102a72) +++ sources/gui/qml/components/ProgressBar.qml (.../ProgressBar.qml) (revision 6616f7b9b88efffa42ab605833d296afb76d3cb1) @@ -33,6 +33,7 @@ property alias marker : _marker property alias markerHeight : _marker.height + property alias decimal : _root.decimal property alias minimum : _root.minimum property alias maximum : _root.maximum @@ -52,6 +53,7 @@ // in the child(ProgressBarEx) ProgressRect { id: _progressRect z : 1 // Main ProgressBar Rect, z order in the gui + decimal : _root.decimal minimum : _root.minimum maximum : _root.maximum value : _root.value @@ -69,6 +71,7 @@ height : Variables.rangeMarkerHeight hasHandle : true + decimal : _root.decimal value : _root.value } }