Index: sources/gui/qml/dialogs/AcidConcentrateAdjustment.qml =================================================================== diff -u -r40b1d61161d8a6d918d54de0c82923458f901d9b -r53ec19e12772f2a73190323438106dc93e4a12df --- sources/gui/qml/dialogs/AcidConcentrateAdjustment.qml (.../AcidConcentrateAdjustment.qml) (revision 40b1d61161d8a6d918d54de0c82923458f901d9b) +++ sources/gui/qml/dialogs/AcidConcentrateAdjustment.qml (.../AcidConcentrateAdjustment.qml) (revision 53ec19e12772f2a73190323438106dc93e4a12df) @@ -26,8 +26,8 @@ ModalDialog { id : _root property int controlWidth : 770 property int controlHeight : 86 - readonly property string adjustment: ("%1 K, %2 Ca, 1 Mg") .arg(_potassiumVolumeControl.value.toFixed(1)) - .arg(_calciumVolumeControl.value.toFixed(1)) + readonly property string adjustment: ("%1 K, %2 Ca, 1 Mg") .arg(_potassiumVolumeControl.value.toFixed(Variables.potassiumPrecision)) + .arg(_calciumVolumeControl.value.toFixed(Variables.calciumPrecision)) width : 1000 height : 600 @@ -78,7 +78,7 @@ maximum : 4.0 // LEAHI-PRS-660 , LEAHI-PRS-241 step : 1.0 defaultValue : 2.0 - decimal : 1 + decimal : Variables.potassiumPrecision } } @@ -99,7 +99,7 @@ maximum : 3.5 // LEAHI-PRS-660 , LEAHI-PRS-241 step : 0.25 defaultValue : 2.5 - decimal : 2 + decimal : Variables.calciumPrecision } }