Index: sources/gui/qml/pages/endtreatment/EndTreatmentRecirculateStack.qml =================================================================== diff -u -r9b34a391e7401e9a045270744902a20d0e66d650 -r1f89cfbbbf596db7922c13f7f195ed9c469bb7e1 --- sources/gui/qml/pages/endtreatment/EndTreatmentRecirculateStack.qml (.../EndTreatmentRecirculateStack.qml) (revision 9b34a391e7401e9a045270744902a20d0e66d650) +++ sources/gui/qml/pages/endtreatment/EndTreatmentRecirculateStack.qml (.../EndTreatmentRecirculateStack.qml) (revision 1f89cfbbbf596db7922c13f7f195ed9c469bb7e1) @@ -74,13 +74,28 @@ hasTimeout : vTreatmentRecirculate .timeoutTotal timeoutValue : vTreatmentRecirculate .timeoutCountDown * 60 onConfirmClicked : recirculateConfirmClicked() + footer { + width : parent.width + height : Variables.touchRectHeight + } + + FooterStatic { childrenWidth : 300 - children : TouchRect { - visible : vTreatmentTime .time_IsLeft - text.text : qsTr("BACK TO RECIRCULATE") - onClicked : recirculateBackClicked() - } + anchors.fill : parent.footer + children : [ + Item { }, + TouchRect { + visible : vTreatmentTime .time_IsLeft + text.text : qsTr("BACK TO RECIRCULATE") + onClicked : recirculateBackClicked() + }, + TouchRect { + visible : vTreatmentTime .time_IsLeft + text.text : qsTr("END TREATMENT") + onClicked : treatmentEndClicked() + } + ] } }