Index: sources/gui/qml/components/RangeMarker.qml =================================================================== diff -u -ra159e12630645a9a35fb0a5585cc7b639cfe6aa6 -r6616f7b9b88efffa42ab605833d296afb76d3cb1 --- sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision a159e12630645a9a35fb0a5585cc7b639cfe6aa6) +++ 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 @@ -72,6 +73,6 @@ topMargin : -5 } color : _root.color - text : value + text : value.toFixed(decimal) } }