Index: sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentRinsebackInit.qml =================================================================== diff -u -rb59827b661a423b2b1ad2ca7b8611c2c0be7bd6a -rcba8451ac737fb0b618173a4bea37411fdaaf824 --- sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentRinsebackInit.qml (.../EndTreatmentRinsebackInit.qml) (revision b59827b661a423b2b1ad2ca7b8611c2c0be7bd6a) +++ sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentRinsebackInit.qml (.../EndTreatmentRinsebackInit.qml) (revision cba8451ac737fb0b618173a4bea37411fdaaf824) @@ -28,41 +28,24 @@ EndTreatmentBase { id: _root objectName: "_EndTreatmentRinsebackInit" - signal treatmentBackClicked () signal rinsebackClicked () - signal treatmentEndClicked () - header.backVisible : vTreatmentTime .time_IsLeft - onBackClicked : treatmentBackClicked() - - title.text : qsTr("Rinseback Setup") + headerTitle : qsTr("Blood Return Setup") instructionBased : true hasTimeout : vTreatmentRinseback .timeoutTotal timeoutValue : vTreatmentRinseback .timeoutCountDown * 60 - footer { - width : parent.width - height : Variables.touchRectHeight + TouchRect { id : _beginRinsebackTouchRect + anchors { + bottom : _root.bottom + bottomMargin : Variables.notificationHeight * 2 + horizontalCenter: _root.horizontalCenter + } + width : Variables.defaultButtonWidth + height : Variables.defaultButtonHeight + isDefault : true + textString : qsTr("Start Blood Return") + onClicked : rinsebackClicked() } - FooterStatic { - childrenWidth : 300 - anchors.fill : footer - children : [ - TouchRect { id : _endTreatmentTouchRect - visible : true //DEN-15722: SRSHD 1231: REmoved => vTreatmentTime .time_IsLeft - text.text : qsTr("END TREATMENT") - onClicked : treatmentEndClicked() - }, - - TouchRect { id : _beginRinsebackTouchRect - visible : true - isDefault : true - text.text : qsTr("START RINSEBACK") - onClicked : rinsebackClicked() - }, - Item { id: placeholder - } - ] - } }