Index: sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentAdditional.qml =================================================================== diff -u -rbb93d05bea8defa9ff689ceda63d03e5233da855 -r210fcfb2899d1f8128b9422725ae9649531005c3 --- sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentAdditional.qml (.../EndTreatmentAdditional.qml) (revision bb93d05bea8defa9ff689ceda63d03e5233da855) +++ sources/gui/qml/pages/endtreatment/rinseback/EndTreatmentAdditional.qml (.../EndTreatmentAdditional.qml) (revision 210fcfb2899d1f8128b9422725ae9649531005c3) @@ -21,6 +21,7 @@ import "qrc:/globals" import "qrc:/components" import "qrc:/pages/endtreatment" +import "qrc:/pages/treatment/sections" /*! * \brief the end treatment additional rinseback screen @@ -62,4 +63,21 @@ font.pixelSize: 23 } } + + TreatmentPressures { id: _pressuresTouchArea + // maybe now it makes sense for the ranges to be displayed + // arterialLowerBound : 0 // requested to hide the bounds + // arterialUpperBound : 0 // requested to hide the bounds + // venousLowerBound : 0 // requested to hide the bounds + // venousUpperBound : 0 // requested to hide the bounds + + isTouchable : false + valueOutRangeNotify : false + x : Variables.screenGridLeftColumnX + y : Variables.screenGridRow1Y + width : Variables.screenGridAreaWidth + height : Variables.screenGridAreaHeightRow1 + } + Line { x: 0; y: Variables.screenGridRow1LineY; length: Variables.screenGridLineLength } + }