Index: sources/gui/qml/pages/treatment/sections/TreatmentSaline.qml =================================================================== diff -u -r59c1263cd37ae5b48e6672413809b9ca480da631 -r2c000124b0b889de58affa516d8e52d23de3176a --- sources/gui/qml/pages/treatment/sections/TreatmentSaline.qml (.../TreatmentSaline.qml) (revision 59c1263cd37ae5b48e6672413809b9ca480da631) +++ sources/gui/qml/pages/treatment/sections/TreatmentSaline.qml (.../TreatmentSaline.qml) (revision 2c000124b0b889de58affa516d8e52d23de3176a) @@ -32,15 +32,12 @@ // Saline bolus is enabled in treatment readonly property bool isDisabled : false readonly property bool isWaitPump : vHDTreatmentStates.sbWaitPump - readonly property bool isRunning : vHDTreatmentStates.txDialysis && - !( vHDTreatmentStates.sbWaitPump || vHDTreatmentStates.sbRunning ) QtObject { id: _private readonly property string textStart : qsTr("START BOLUS") readonly property string textStop : qsTr("STOP BOLUS" ) readonly property string textVolumeTarget : "(" + valueTarget + unit + ")" readonly property string mesgDisabled : qsTr("Maximum cumulative saline bolus volume delivered") - readonly property string mesgWaitForPump : "" // qsTr("Saline Bolus is starting") // Not sure if we shouls show any message at this point readonly property string mesgRejectReason : vTreatmentAdjustmentSaline.adjustment_ReasonText } @@ -71,8 +68,6 @@ notification { visible : true text : isDisabled ? _private.mesgDisabled : - isWaitPump ? _private.mesgWaitForPump : - isRunning ? "" : _private.mesgRejectReason } }