Index: sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml =================================================================== diff -u -reea63d68fc0fb269f8dec64d99f488bcad117220 -r44a85c96ab55e424866ec4cca0270aa218355f82 --- sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml (.../TreatmentFlows.qml) (revision eea63d68fc0fb269f8dec64d99f488bcad117220) +++ sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml (.../TreatmentFlows.qml) (revision 44a85c96ab55e424866ec4cca0270aa218355f82) @@ -1,15 +1,16 @@ /*! - * + * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. - * \copyright \n - * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, \n - * IN PART OR IN WHOLE, \n - * WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. \n - * - * \file TreatmentFlows.qml - * \date 2020/01/27 - * \author Behrouz NematiPour - * + * \copyright + * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN + * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. + * + * \file TreatmentFlows.qml + * \author (last) Behrouz NematiPour + * \date (last) 21-May-2020 + * \author (original) Behrouz NematiPour + * \date (original) 27-Jan-2020 + * */ // Qt @@ -33,21 +34,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 } - ] + } }