Index: sources/gui/qml/components/RangeMarker.qml =================================================================== diff -u -rcd7de5f6d239a11615ba8c6c03339a10996486ca -r6616f7b9b88efffa42ab605833d296afb76d3cb1 --- sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision cd7de5f6d239a11615ba8c6c03339a10996486ca) +++ sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision 6616f7b9b88efffa42ab605833d296afb76d3cb1) @@ -23,7 +23,8 @@ * \brief Denali project simple logo (No 'Diality') */ Item { id : _root - property int value : 0 + property real value : 0 + property int decimal : 0 property alias text : _textValue property color color : Colors.rangeMarker @@ -71,7 +72,7 @@ rightMargin: 5 topMargin : -5 } - color : Colors.textRangeMarker - text : value + color : _root.color + text : value.toFixed(decimal) } }