Index: sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml =================================================================== diff -u -rbed87eff8cfc2398d00eb62651c165f014880a1a -r4a2b83dcb56555861d2c741a8e8894e5b07e24bf --- sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml (.../PostTreatmentStack.qml) (revision bed87eff8cfc2398d00eb62651c165f014880a1a) +++ sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml (.../PostTreatmentStack.qml) (revision 4a2b83dcb56555861d2c741a8e8894e5b07e24bf) @@ -100,7 +100,7 @@ function confirmButtonText() { switch ( _root.stackStepIndex ) { case PostTreatmentStack.Disconnection: - return qsTr("Auto-Eject") + return qsTr("Auto Eject") case PostTreatmentStack.Review: return qsTr("NEXT") case PostTreatmentStack.Disinfection: @@ -187,32 +187,32 @@ Connections { target: vPostTreatmentAdjustmentPatientDisconnectionConfirm function onAdjustmentTriggered ( vValue ) { if ( vPostTreatmentAdjustmentPatientDisconnectionConfirm.adjustment_Accepted ) { - _treatmentReviewConfirm.informationText = "" + _treatmentReviewConfirm.reasonText = "" page( _disposablesRemovalConfirm ) } else { - _treatmentReviewConfirm.informationText = vPostTreatmentAdjustmentPatientDisconnectionConfirm.text() + _treatmentReviewConfirm.reasonText = vPostTreatmentAdjustmentPatientDisconnectionConfirm.text() } } } Connections { target: vPostTreatmentAdjustmentDisposablesRemovalConfirm function onAdjustmentTriggered ( vValue ) { if ( vPostTreatmentAdjustmentDisposablesRemovalConfirm.adjustment_Accepted ) { - _patientDisconnectionConfirm.informationText = "" + _patientDisconnectionConfirm.reasonText = "" page( _treatmentReviewConfirm ) } else { - _patientDisconnectionConfirm.informationText = vPostTreatmentAdjustmentDisposablesRemovalConfirm.text() + _patientDisconnectionConfirm.reasonText = vPostTreatmentAdjustmentDisposablesRemovalConfirm.text() } } } Connections { target: vPostTreatmentAdjustmentTreatmentLog function onAdjustmentTriggered ( vValue ) { if ( vPostTreatmentAdjustmentTreatmentLog.adjustment_Accepted ) { - _treatmentReviewConfirm.informationText = "" + _treatmentReviewConfirm.reasonText = "" } else { - _treatmentReviewConfirm.informationText = vPostTreatmentAdjustmentTreatmentLog.text() + _treatmentReviewConfirm.reasonText = vPostTreatmentAdjustmentTreatmentLog.text() } } }