Index: sources/gui/qml/pages/pretreatment/create/PreTreatmentCreateStack.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r2ad0fc5c1215088ee0e4ea7f9b2bc367c4ed2fd9 --- sources/gui/qml/pages/pretreatment/create/PreTreatmentCreateStack.qml (.../PreTreatmentCreateStack.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/pages/pretreatment/create/PreTreatmentCreateStack.qml (.../PreTreatmentCreateStack.qml) (revision 2ad0fc5c1215088ee0e4ea7f9b2bc367c4ed2fd9) @@ -67,6 +67,7 @@ } title.text : qsTr("Patient ID") + title.topPadding : 100 // moving down the title to get closer to keyboard. header.backVisible : true header.confirmVisible : true header.confirmText.text : _pretreatmentPatientIDEntry.text ? qsTr("CONTINUE") : qsTr("SKIP") @@ -75,11 +76,11 @@ clip : true hasCursor : true - textInput .width : 450 + textInput.width : 450 text : vTreatmentCreate.patientID anchors { - top : parent.top - topMargin : topMarginContent + 120 // moved a little down to be more on center and close to keyboard top edge. + top : parent.title.bottom + topMargin : 50 horizontalCenter: parent.horizontalCenter } textInput.inputMethodHints : Qt.ImhPreferLowercase @@ -103,7 +104,7 @@ title.text : qsTr("Confirm Treatment") } - Connections { target: vHDOperationMode + Connections { target: vTDOpMode function onValidateParametersChanged ( vValue ) { pagePatientID ( vValue )} }