Index: sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml =================================================================== diff -u -reea63d68fc0fb269f8dec64d99f488bcad117220 -ra159e12630645a9a35fb0a5585cc7b639cfe6aa6 --- sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml (.../TreatmentFlows.qml) (revision eea63d68fc0fb269f8dec64d99f488bcad117220) +++ sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml (.../TreatmentFlows.qml) (revision a159e12630645a9a35fb0a5585cc7b639cfe6aa6) @@ -33,21 +33,26 @@ y : 0 title : qsTr("FLOWS") width : 370 - componentsHSpacing: 15 - components: [ + + Row { + spacing: 40 + anchors.top: _root.top + anchors.topMargin: 40 TextRect { id: _bloodFlow - title: qsTr("Blood") - label: vTreatmentBloodFlow.bloodFlow_FlowSetPoint - extra: unit + title : qsTr("Blood") + label : vTreatmentBloodFlow.bloodFlow_FlowSetPoint + extra : unit labelFont.weight: Font.ExtraLight - width: 180 - } , + width : 180 + height: 200 + } TextRect { id: _dialysateInletFlow title: qsTr("Dialysate") label: vTreatmentDialysateFlow.dialysateFlow_FlowSetPoint extra: unit labelFont.weight: Font.ExtraLight width: 180 + height: 200 } - ] + } }