Index: sources/gui/qml/pages/TreatmentFlowBase.qml =================================================================== diff -u -rf0cbe4cfc8a5e6e7aa58a8eeaab2d838cf2ff957 -rac07818fa03e65ff3601535b790bb6cb4e34f731 --- sources/gui/qml/pages/TreatmentFlowBase.qml (.../TreatmentFlowBase.qml) (revision f0cbe4cfc8a5e6e7aa58a8eeaab2d838cf2ff957) +++ sources/gui/qml/pages/TreatmentFlowBase.qml (.../TreatmentFlowBase.qml) (revision ac07818fa03e65ff3601535b790bb6cb4e34f731) @@ -77,6 +77,7 @@ } Text { id: _titleText + visible: ! instructionBased anchors { top : _root.top topMargin : titleTopMargin @@ -95,7 +96,7 @@ readonly property int outerVMargin : 15 active : _root.instructionBased anchors { - top : title.bottom + top : title.visible ? title.bottom : title.top bottom : footer.top left : parent.left right : parent.right @@ -105,6 +106,7 @@ bottomMargin : outerVMargin } sourceComponent : InstructionView { id: _instructionView + label : title.visible ? "" : _root.title.text location : _root.instructionlocation stepNames : _root.instructionStepNames stepImages : _root.instructionStepImages