Index: sources/gui/qml/components/BaseComboBox.qml =================================================================== diff -u -r5c054a624e9b8523b530691aa07735f34e20e01b -r3069c3c58513a5a036f91635cb158cd3ba3b04dc --- sources/gui/qml/components/BaseComboBox.qml (.../BaseComboBox.qml) (revision 5c054a624e9b8523b530691aa07735f34e20e01b) +++ sources/gui/qml/components/BaseComboBox.qml (.../BaseComboBox.qml) (revision 3069c3c58513a5a036f91635cb158cd3ba3b04dc) @@ -40,8 +40,6 @@ signal clear() - onClear : { currentIndex = 0 } - contentItem: Text { id: _displayText text : canOff && parent.displayText === "0" ? qsTr("OFF") : parent.displayText color : Colors.offWhite Index: sources/gui/qml/dialogs/EndTreatmentDialog.qml =================================================================== diff -u -r99e596082b87afd73b06dae039d51e4a67cc5913 -r3069c3c58513a5a036f91635cb158cd3ba3b04dc --- sources/gui/qml/dialogs/EndTreatmentDialog.qml (.../EndTreatmentDialog.qml) (revision 99e596082b87afd73b06dae039d51e4a67cc5913) +++ sources/gui/qml/dialogs/EndTreatmentDialog.qml (.../EndTreatmentDialog.qml) (revision 3069c3c58513a5a036f91635cb158cd3ba3b04dc) @@ -37,7 +37,7 @@ } color : Colors.textMain font.pixelSize : Fonts.fontPixelNotification - text : qsTr("Stay on treatment if blood sample is required.") + text : qsTr("Remain on treatment if blood sample is required.") } Connections { target : vTreatmentAdjustmentEnd Index: sources/gui/qml/pages/posttreatment/PostTreatmentDisinfection.qml =================================================================== diff -u -r6825a57fe430253271712f0afbac14d046b44794 -r3069c3c58513a5a036f91635cb158cd3ba3b04dc --- sources/gui/qml/pages/posttreatment/PostTreatmentDisinfection.qml (.../PostTreatmentDisinfection.qml) (revision 6825a57fe430253271712f0afbac14d046b44794) +++ sources/gui/qml/pages/posttreatment/PostTreatmentDisinfection.qml (.../PostTreatmentDisinfection.qml) (revision 3069c3c58513a5a036f91635cb158cd3ba3b04dc) @@ -58,7 +58,7 @@ delegateBorderWidth : 1 delegateBorderColor : Colors.panelBorderColor itemsHasIndent : Array(itemsText.length).fill(true) // sets all to true - itemsText : [ qsTr("Rinseback") , + itemsText : [ qsTr("Rinse") , qsTr("Heat Disinfect") , qsTr("Citric Acid Heat Disinfect") , qsTr("Substitution Port Disinfect") ] Index: sources/gui/qml/pages/pretreatment/create/PreTreatmentCreatePatientPrescription.qml =================================================================== diff -u -r5c054a624e9b8523b530691aa07735f34e20e01b -r3069c3c58513a5a036f91635cb158cd3ba3b04dc --- sources/gui/qml/pages/pretreatment/create/PreTreatmentCreatePatientPrescription.qml (.../PreTreatmentCreatePatientPrescription.qml) (revision 5c054a624e9b8523b530691aa07735f34e20e01b) +++ sources/gui/qml/pages/pretreatment/create/PreTreatmentCreatePatientPrescription.qml (.../PreTreatmentCreatePatientPrescription.qml) (revision 3069c3c58513a5a036f91635cb158cd3ba3b04dc) @@ -21,7 +21,6 @@ spacing : Variables.defaultMargin * 3 - enum HeparinEnabled { OFF, ON @@ -128,6 +127,7 @@ textInput.validator : RegExpValidator { regExp: Variables.regExp_PatientID } line.visible : false enabled : _root.editingEnabled + textInput.onTextChanged : vTreatmentCreate.patientID = textInput.text Text { id: _patientIDPlaceHolderText text : Variables.emptyEntry