Index: sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml =================================================================== diff -u -rf502bc55feb08cd037d9caa12086d30034fe715b -rc953b3fb94b4fe7347c0ca48d85ca99ddc7e9027 --- sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml (.../TreatmentPressures.qml) (revision f502bc55feb08cd037d9caa12086d30034fe715b) +++ sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml (.../TreatmentPressures.qml) (revision c953b3fb94b4fe7347c0ca48d85ca99ddc7e9027) @@ -36,7 +36,7 @@ property int venousUpperBound : 0 property int venousMaximum : 0 - property int arterilPressure : 0 + property int arterialPressure : 0 property int venousPressure : 0 property bool valueOutRangeNotify : true @@ -49,20 +49,6 @@ isTouchable: true title: qsTr("PRESSURE") + " " + qsTr("(mmHg)") - /* - Since this Component cannot be bound to the properties since it has to make sure the request has been accepted. - Because the pressure response regardless of the accepted/rejected the FW Software message will pass what is preferred. - */ - function setBounds(vArterialLimitLow , - vArterialLimitHigh , - vVenousLimitLow , - vVenousLimitHigh ) { - _root.arterialLowerBound = vArterialLimitLow - _root.arterialUpperBound = vArterialLimitHigh - _root.venousLowerBound = vVenousLimitLow - _root.venousUpperBound = vVenousLimitHigh - } - RangeBar { id: _arterialRangeBar x: 0 y: 80 @@ -75,7 +61,7 @@ lowerBound : _root.arterialLowerBound upperBound : _root.arterialUpperBound maximum : _root.arterialMaximum - value : _root.arterilPressure + value : _root.arterialPressure color : valueOutRangeNotify ? Colors.backgroundRangeRect : rangebar.color Text { id: _arterialText