Index: sources/gui/qml/pages/postTreatment/PostTreatmentRinseback.qml =================================================================== diff -u -rfd25d67f37410037f22be9c6e958b100e3790de9 -r2d37388a2b6651ea4002d6720e933315e0ba7fa3 --- sources/gui/qml/pages/postTreatment/PostTreatmentRinseback.qml (.../PostTreatmentRinseback.qml) (revision fd25d67f37410037f22be9c6e958b100e3790de9) +++ sources/gui/qml/pages/postTreatment/PostTreatmentRinseback.qml (.../PostTreatmentRinseback.qml) (revision 2d37388a2b6651ea4002d6720e933315e0ba7fa3) @@ -48,6 +48,7 @@ } ImageText { id: _imageEnd + visible: ! vHDTreatmentStates.rbAdditional anchors { right : _root.right top : _root.top @@ -66,7 +67,9 @@ anchors { horizontalCenter: parent.horizontalCenter top : parent.top - topMargin : 170 + topMargin : vHDTreatmentStates.rbAdditional ? + _root.height/2 - height/2 : // move the progress circle in the center of the screen + 170 } minimum : 0 @@ -76,7 +79,7 @@ Text { id: _textVolume anchors.centerIn: parent color: "white" - text: vTreatmentRinseback.target.toFixed(0) + " " + qsTr(Variables.unitTextFluid) + text: vTreatmentRinseback.current.toFixed(0) + " " + qsTr(Variables.unitTextFluid) font.pixelSize: 76 font.weight: Font.ExtraLight @@ -124,7 +127,7 @@ } ImageText { id: _imagePause - visible : vHDTreatmentStates.rbRun // not sure if it's possible || vHDTreatmentStates.rbRun_Additional + visible : vHDTreatmentStates.rbRun // not sure if it's possible || vHDTreatmentStates.rbAdditional anchors.bottom : _buttonRow.bottom diameter : Variables.rinsebackIconDiameterResumePause source : "qrc:/images/iPauseLightBlue"