Index: sources/gui/qml/components/SubStepIndicator.qml =================================================================== diff -u -r09ec5af58d98d8cd337359482e81045052a5c264 -ra26580f1abb9900e91590bf19c78439c24ad6ffc --- sources/gui/qml/components/SubStepIndicator.qml (.../SubStepIndicator.qml) (revision 09ec5af58d98d8cd337359482e81045052a5c264) +++ sources/gui/qml/components/SubStepIndicator.qml (.../SubStepIndicator.qml) (revision a26580f1abb9900e91590bf19c78439c24ad6ffc) @@ -38,7 +38,7 @@ complete : _root.complete || _root.subStepIndex > 0 && index < _root.subStepIndex - 1 // first index is used for the head/first bullet current : _root.subStepIndex > 0 && index === _root.subStepIndex - 1 // first index is used for the head/first bullet showCompleteCheck : false - diameter : 16 + diameter : 13 } } } Index: sources/gui/qml/pages/posttreatment/PostTreatmentReview.qml =================================================================== diff -u -r7c12b8ce1964a37e856ebcae205f8b4ed19f3c6a -ra26580f1abb9900e91590bf19c78439c24ad6ffc --- sources/gui/qml/pages/posttreatment/PostTreatmentReview.qml (.../PostTreatmentReview.qml) (revision 7c12b8ce1964a37e856ebcae205f8b4ed19f3c6a) +++ sources/gui/qml/pages/posttreatment/PostTreatmentReview.qml (.../PostTreatmentReview.qml) (revision a26580f1abb9900e91590bf19c78439c24ad6ffc) @@ -34,7 +34,7 @@ anchors { top : header.bottom - topMargin : Variables.defaultMargin + topMargin : Variables.defaultMargin * 2 bottom : _root.bottom bottomMargin : Variables.notificationHeight + Variables.minVGap horizontalCenter: parent.horizontalCenter @@ -50,11 +50,11 @@ model : vPostTreatmentAdjustmentTreatmentLog.parametersTitle LabelUnitText { id: container - height : 65 + height : 67 width : 575 label : modelData unit : vPostTreatmentAdjustmentTreatmentLog.parametersUnit[index] ?? "" - value : "123" // vPostTreatmentAdjustmentTreatmentLog.parametersText[index] ?? "" + value : vPostTreatmentAdjustmentTreatmentLog.parametersText[index] ?? "" textAlignment: Text.AlignJustify } } Index: sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml =================================================================== diff -u -r7c12b8ce1964a37e856ebcae205f8b4ed19f3c6a -ra26580f1abb9900e91590bf19c78439c24ad6ffc --- sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml (.../PostTreatmentStack.qml) (revision 7c12b8ce1964a37e856ebcae205f8b4ed19f3c6a) +++ sources/gui/qml/pages/posttreatment/PostTreatmentStack.qml (.../PostTreatmentStack.qml) (revision a26580f1abb9900e91590bf19c78439c24ad6ffc) @@ -167,8 +167,9 @@ anchors { left : _titleBar.left + leftMargin : Variables.defaultMargin * 2 top : _titleBar.top - topMargin : Variables.defaultMargin + topMargin : Variables.defaultMargin * 2 } QRCode { id: _qrCode @@ -185,7 +186,6 @@ font.pixelSize : Fonts.fontPixelButton } } - } PostTreatmentDisconnectStack { id: _postTreatmentDisconnectStack @@ -203,18 +203,8 @@ objectName : " _postTreatmentReview" onVisibleChanged : if (visible) { stackStepIndex = PostTreatmentStack.Review; vPostTreatmentAdjustmentTreatmentLog.doRequest() } - -// onItemClicked : { -// _detailTest.title.text = itemsText[vIndex] -// push(_detailTest) -// } } -// PostTreatmentBase { id: _detailTest -// objectName :"_detailTest" -// onBackClicked : pop() -// } - PostTreatmentBase { id: _postTreatmentDisinfection objectName :" _postTreatmentDisinfection" instructionBased : true