Index: sources/gui/qml/pages/treatment/sections/TreatmentSaline.qml =================================================================== diff -u -r6e9dccd1109d9c8d4ee4b6a21260618969a1706b -rb51d4ccc77d53e6e62a23255053888c936e7e919 --- sources/gui/qml/pages/treatment/sections/TreatmentSaline.qml (.../TreatmentSaline.qml) (revision 6e9dccd1109d9c8d4ee4b6a21260618969a1706b) +++ sources/gui/qml/pages/treatment/sections/TreatmentSaline.qml (.../TreatmentSaline.qml) (revision b51d4ccc77d53e6e62a23255053888c936e7e919) @@ -29,17 +29,15 @@ TreatmentFluid { id: _root readonly property bool isStarted : vHDTreatmentStates.sbRunning readonly property bool isIdle : vHDTreatmentStates.sbIdle - // other that max saline bolus delivered, - // if saline started but still is waiting for pump the button is disabled so user won't tap multiple times. - readonly property bool isDisabled : vHDTreatmentStates.sbMaxReached + // Saline bolus is enabled in treatment + readonly property bool isDisabled : false readonly property bool isWaitPump : vHDTreatmentStates.sbWaitPump 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 } @@ -70,7 +68,6 @@ notification { visible : true text : isDisabled ? _private.mesgDisabled : - isWaitPump ? _private.mesgWaitForPump : _private.mesgRejectReason } }