Index: sources/gui/qml/components/ConfirmTreatmentTable.qml =================================================================== diff -u -rdd2d4b50f32f74eccbc9592be5ef9da0bc0fbd25 -r7cc15ae5968205b241a08ca4646f283b8bf97b03 --- sources/gui/qml/components/ConfirmTreatmentTable.qml (.../ConfirmTreatmentTable.qml) (revision dd2d4b50f32f74eccbc9592be5ef9da0bc0fbd25) +++ sources/gui/qml/components/ConfirmTreatmentTable.qml (.../ConfirmTreatmentTable.qml) (revision 7cc15ae5968205b241a08ca4646f283b8bf97b03) @@ -101,16 +101,16 @@ anchors.bottom: parent.bottom width: parent.width - 2*Variables.createTreatmentMargin height: _root.height - _header.height - prescriptionKeys: vTreatmentCreate.doGetPrescriptionParameterNames() - prescriptionValues: vTreatmentCreate.doGetPrescriptionParameterValues() - operatingKeys: vTreatmentCreate.doGetOperatingParameterNames() - operatingValues: vTreatmentCreate.doGetOperatingParameterValues() + prescriptionKeys : vTreatmentCreate.doGetPrescriptionParameterNames() + prescriptionValues : vTreatmentCreate.doGetPrescriptionParameterValues() + operatingKeys : vTreatmentCreate.doGetOperatingParameterNames() + operatingValues : vTreatmentCreate.doGetOperatingParameterValues() onVisibleChanged: { if (visible) { - prescriptionKeys = vTreatmentCreate.doGetPrescriptionParameterNames() - prescriptionValues = vTreatmentCreate.doGetPrescriptionParameterValues() - operatingKeys = vTreatmentCreate.doGetOperatingParameterNames() - operatingValues = vTreatmentCreate.doGetOperatingParameterValues() + prescriptionKeys = vTreatmentCreate.doGetPrescriptionParameterNames() + prescriptionValues = vTreatmentCreate.doGetPrescriptionParameterValues() + operatingKeys = vTreatmentCreate.doGetOperatingParameterNames() + operatingValues = vTreatmentCreate.doGetOperatingParameterValues() } } }