Index: sources/gui/qml/pages/treatment/sections/TreatmentUltrafiltration.qml =================================================================== diff -u -r4a6abe765f03feae8100ec660aa04aa218d4dfa3 -r02e5bb5f938d2be1c5c25f823810aabfb2a52b82 --- sources/gui/qml/pages/treatment/sections/TreatmentUltrafiltration.qml (.../TreatmentUltrafiltration.qml) (revision 4a6abe765f03feae8100ec660aa04aa218d4dfa3) +++ sources/gui/qml/pages/treatment/sections/TreatmentUltrafiltration.qml (.../TreatmentUltrafiltration.qml) (revision 02e5bb5f938d2be1c5c25f823810aabfb2a52b82) @@ -14,10 +14,8 @@ // Qt import QtQuick 2.12 -import QtQuick.Controls 2.12 // Project -import Gui.Actions 0.1; // Qml imports import "qrc:/globals" @@ -27,25 +25,25 @@ * \brief Treatment Screen Ultrafiltration section */ TouchArea { id: _root - property alias minimum : _progressbar.minimum - property alias maximum : _progressbar.maximum - property alias value : _progressbar.value - property alias valueEx : _progressbar.valueEx + property alias minimum : _progressbarex.minimum + property alias maximum : _progressbarex.maximum + property alias value : _progressbarex.value + property alias valueEx : _progressbarex.valueEx clip: false - x : rightColumnX - y : row1Y - width : _flowsTouchArea.width + x : 0 + y : 0 + width : 200 height : 200 isTouchable : true orientation : TouchArea.Orientation.Vertical - title : qsTr("ULTRAFILTRATION VOLUME") + " " + qsTr("(mL)") + title : qsTr("ULTRAFILTRATION VOLUME") + " " + qsTr("(L)") - ProgressBar { id: _progressbar + ProgressBarEx { id: _progressbarex y : 75 width : parent.width height : Variables.progressbarHeight - value : vTreatmentUltrafiltration.ultrafiltration_MeasUFVol.toFixed(2); + value : 0 valueEx : 0 } }