Index: sources/gui/qml/components/ProgressBarEx.qml =================================================================== diff -u -r7805806e4370be4d9207872e916f478875bd4ba6 -rcf3ef3656c06ade00b6bc6c09e8e0f858ee1af24 --- sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision 7805806e4370be4d9207872e916f478875bd4ba6) +++ sources/gui/qml/components/ProgressBarEx.qml (.../ProgressBarEx.qml) (revision cf3ef3656c06ade00b6bc6c09e8e0f858ee1af24) @@ -51,7 +51,7 @@ onClicked: extraClicked() } - Rectangle { id: _rightBackground // quick workaround to get the look of the progress bar as design + Rectangle { id: _rightBackground // to match design and get the right end of progress bar straight and not rounded color: gradientEnd height: parent.height width: 20 Index: sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml =================================================================== diff -u -r8fa24e534368d2baad16f262d31630996798977f -rcf3ef3656c06ade00b6bc6c09e8e0f858ee1af24 --- sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml (.../TreatmentFlows.qml) (revision 8fa24e534368d2baad16f262d31630996798977f) +++ sources/gui/qml/pages/treatment/sections/TreatmentFlows.qml (.../TreatmentFlows.qml) (revision cf3ef3656c06ade00b6bc6c09e8e0f858ee1af24) @@ -21,6 +21,7 @@ // Qml imports import "qrc:/globals" import "qrc:/components" +import "qrc:/pages/treatment" /*! * \brief Treatment Screen Flows section @@ -58,7 +59,7 @@ title : qsTr("Dialysate Flow") height : _row.cellHeight width : _row.cellWidth - value : Variables.notSetVariable(vTreatmentBloodFlow.dialysateFlow_PresFlow) + value : "20"//Variables.notSetVariable(vTreatmentBloodFlow.dialysateFlow_PresFlow) unitText : Variables.unitTextFlowRate buttonsEnabled : editEnabled // TODO extraText : "OFF" // TODO @@ -72,7 +73,7 @@ title : qsTr("Dialysate Temp.") height : _row.cellHeight width : _row.cellWidth - value : Variables.notSetVariable(vTreatmentBloodFlow.bloodFlow_PresFlow) + value : "145"//Variables.notSetVariable(vTreatmentBloodFlow.bloodFlow_PresFlow) unitText : Variables.unitTextTemperature buttonsEnabled : editEnabled // TODO @@ -85,7 +86,7 @@ title : qsTr("Dialysate Cond.") height : _row.cellHeight width : _row.cellWidth - value : Variables.notSetVariable(vTreatmentBloodFlow.bloodFlow_PresFlow) + value : "55"//Variables.notSetVariable(vTreatmentBloodFlow.bloodFlow_PresFlow) unitText : Variables.unitTextDialCond showButtons : false dropShadowEnabled : false Index: sources/gui/qml/pages/treatment/sections/TreatmentTime.qml =================================================================== diff -u -r8fa24e534368d2baad16f262d31630996798977f -rcf3ef3656c06ade00b6bc6c09e8e0f858ee1af24 --- sources/gui/qml/pages/treatment/sections/TreatmentTime.qml (.../TreatmentTime.qml) (revision 8fa24e534368d2baad16f262d31630996798977f) +++ sources/gui/qml/pages/treatment/sections/TreatmentTime.qml (.../TreatmentTime.qml) (revision cf3ef3656c06ade00b6bc6c09e8e0f858ee1af24) @@ -22,6 +22,7 @@ // Qml imports import "qrc:/globals" import "qrc:/components" +import "qrc:/pages/treatment" /*! * \brief Treatment Screen Treatment Time Remaining section