Index: sources/gui/qml/pages/endtreatment/EndTreatmentRecirculateStack.qml =================================================================== diff -u -r9667ff80660933cb89207a510c4fb111148181d4 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/pages/endtreatment/EndTreatmentRecirculateStack.qml (.../EndTreatmentRecirculateStack.qml) (revision 9667ff80660933cb89207a510c4fb111148181d4) +++ sources/gui/qml/pages/endtreatment/EndTreatmentRecirculateStack.qml (.../EndTreatmentRecirculateStack.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2021-2023 Diality Inc. - All Rights Reserved. + * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file EndTreatmentRecirculateStack.qml - * \author (last) Behrouz NematiPour - * \date (last) 23-Nov-2022 + * \author (last) Vy + * \date (last) 17-May-2023 * \author (original) Behrouz NematiPour * \date (original) 11-Apr-2021 * @@ -59,7 +59,7 @@ } component ButtonReconnect : TouchRect { - text.text : qsTr("RECONNECT") + text.text : qsTr("RESUME TREATMENT") isDefault : true onClicked : reconnectClicked() } @@ -90,29 +90,30 @@ confirmVisible : true onConfirmClicked : confirmDisconnectClicked() footerButtons : [ + ButtonEndTreatment {}, Item {}, // button placeholder to align the buttons - Item {}, // button placeholder to align the buttons - ButtonEndTreatment {} + Item {} // button placeholder to align the buttons ] } // Recirculate RecirculateBase { id: _recirculateRecirculate title.text : qsTr("Recirculate") footerButtons : [ - Item {}, // button placeholder to align the buttons + ButtonEndTreatment {}, ButtonReconnect {}, - ButtonEndTreatment {} + Item {} // button placeholder to align the buttons ] } // Stopped RecirculateBase { id: _recirculateStopped title.text : qsTr("Recirculate Stopped") footerButtons : [ - Item {}, // button placeholder to align the buttons + ButtonEndTreatment {}, ButtonBackToRecirculate {}, - ButtonEndTreatment {} + Item {} // button placeholder to align the buttons + ] } @@ -122,9 +123,9 @@ confirmVisible : true onConfirmClicked : confirmReconnectClicked() footerButtons : [ - Item {}, // button placeholder to align the buttons + ButtonEndTreatment {}, ButtonBackToRecirculate {}, - ButtonEndTreatment {} + Item {} // button placeholder to align the buttons ] }