Index: sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentRinseback.qml =================================================================== diff -u -r726dc38cf98a8f0a827b2efeecfd32996d0eee90 -rbc4b9e027cd54b49a73c3f7d6800a3563fc43b4c --- sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentRinseback.qml (.../EndTreatmentRinseback.qml) (revision 726dc38cf98a8f0a827b2efeecfd32996d0eee90) +++ sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentRinseback.qml (.../EndTreatmentRinseback.qml) (revision bc4b9e027cd54b49a73c3f7d6800a3563fc43b4c) @@ -30,7 +30,7 @@ EndTreatmentBase { id: _root objectName : "_EndTreatmentRinseback" - headerTitle : qsTr("Rinseback") + headerTitle : qsTr("Returning Blood") signal pauseClicked () signal resumeClicked () @@ -112,10 +112,10 @@ TreatmentSection { id: _treatmentFlowRate objectName : "_treatmentFlowRate" anchors.verticalCenter : parent.verticalCenter - width : _flowRateItem.childrenRect.width + (Variables.defaultMargin * 2) // margin x2 for look and feel + width : parent.width / 3 height : _treatmentPressures.height header { - title : qsTr("Rinseback Flow Rate") + title : qsTr("Blood Flow Rate") showEdit : false } contentItem : Item { id: _flowRateItem @@ -213,26 +213,12 @@ } spacing: Variables.defaultMargin * 2 - TouchRect { id: _endButton - objectName : "_endButton" - width : Variables.defaultButtonWidth - height : Variables.defaultButtonHeight - text { - text : qsTr("End Rinseback") - font.weight : Font.Medium - } - isDefault : true - enabled : true - - onClicked : { _root.endClicked() } - } - TouchRect { id: _pauseResumeButton objectName: "_pauseResumeButton" width : Variables.defaultButtonWidth height : Variables.defaultButtonHeight text { - text : vTDTreatmentStates.rbPaused ? qsTr("Resume Rinseback") : qsTr("Pause Rinseback") + text : vTDTreatmentStates.rbPaused ? qsTr("Resume") : qsTr("Pause") font.weight : Font.Medium } isDefault : true