Index: sources/gui/qml/compounds/ValueAdjuster.qml =================================================================== diff -u -r02f5bd9c52c936b9849e0ce686dc75840101ec64 -rea4de12b2c7d6306a9cb89ff23eb95ccd25077a1 --- sources/gui/qml/compounds/ValueAdjuster.qml (.../ValueAdjuster.qml) (revision 02f5bd9c52c936b9849e0ce686dc75840101ec64) +++ sources/gui/qml/compounds/ValueAdjuster.qml (.../ValueAdjuster.qml) (revision ea4de12b2c7d6306a9cb89ff23eb95ccd25077a1) @@ -37,9 +37,9 @@ property bool allowOff : false // fix floating-point precision issue - readonly property real stepVal : Math.round(step * 10) / 10 - readonly property real minVal : Math.round(minimum * 10) / 10 - readonly property real val : Math.round(value * 10) / 10 + readonly property real stepVal : Math.round(step * 100) / 100 + readonly property real minVal : Math.round(minimum * 100) / 100 + readonly property real val : Math.round(value * 100) / 100 onActiveChanged : if ( active ) { _root.value = _root.defaultValue }