Index: sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml =================================================================== diff -u -re36852d9548379bd861d4b0838761d2aa5243dad -rca5a17d5abaae0982922faca123d6f189135d413 --- sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml (.../TreatmentPressures.qml) (revision e36852d9548379bd861d4b0838761d2aa5243dad) +++ sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml (.../TreatmentPressures.qml) (revision ca5a17d5abaae0982922faca123d6f189135d413) @@ -44,8 +44,6 @@ property int venousPressure : vTreatmentPressureOcclusion.venousPressure property int tmpPressure : vTreatmentPressureOcclusion.tmpPressure - property bool valueOutRangeNotify : true - header.title : qsTr("Pressures") + " (" + qsTr("mmHg") + ")" contentArea.anchors.topMargin : Variables.defaultMargin @@ -59,7 +57,6 @@ leftPadding : Variables.defaultMargin rightPadding : Variables.defaultMargin - TreatmentPressureComponent { id: _arterialRangeBar title : qsTr("Arterial:") height : _column.cellHeight @@ -71,8 +68,6 @@ upperBound : _root.arterialUpperBound maximum : _root.arterialMaximum pressure : _root.arterialPressure - - valueOutRangeNotify : _root.valueOutRangeNotify } TreatmentPressureComponent { id: _venousRangeBar @@ -86,8 +81,6 @@ upperBound : _root.venousUpperBound maximum : _root.venousMaximum pressure : _root.venousPressure - - valueOutRangeNotify : _root.valueOutRangeNotify } TreatmentPressureComponent { id: _tmpRangeBar @@ -101,8 +94,6 @@ upperBound : _root.tmpUpperBound maximum : _root.tmpMaximum pressure : _root.tmpPressure - - valueOutRangeNotify : _root.valueOutRangeNotify } }