Index: sources/gui/qml/components/RangeSlider.qml =================================================================== diff -u -r9a0581274e4dc51af6d6f3e4dd932581e8dce445 -r99e12314855a6b8dd46989b9c0e5263b74af5dc4 --- sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 9a0581274e4dc51af6d6f3e4dd932581e8dce445) +++ sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 99e12314855a6b8dd46989b9c0e5263b74af5dc4) @@ -100,7 +100,7 @@ } function getXOfValue(vValue) { - return ((vValue - minimum) * width)/( maximum - minimum ) + return ( ( vValue - minimum ) * width ) / ( maximum - minimum ) } ///