Index: sources/gui/qml/pages/treatment/TreatmentStack.qml =================================================================== diff -u -rea51c0546c7061d225e7b9d8b754554c65f0d1b1 -ra6ad83a73eb80978261a408ee5a92fbc8f7faa4e --- sources/gui/qml/pages/treatment/TreatmentStack.qml (.../TreatmentStack.qml) (revision ea51c0546c7061d225e7b9d8b754554c65f0d1b1) +++ sources/gui/qml/pages/treatment/TreatmentStack.qml (.../TreatmentStack.qml) (revision a6ad83a73eb80978261a408ee5a92fbc8f7faa4e) @@ -47,11 +47,11 @@ stackView.initialItem : null // ultrafiltration state information bar properties - readonly property bool isUFPaused : vTDTreatmentStates.ufPaused - readonly property bool isUFRunning : vTDTreatmentStates.ufRunning + readonly property bool isUFPaused : vTreatmentUltrafiltration.ufPaused + readonly property bool isUFRunning : vTreatmentUltrafiltration.ufRunning readonly property bool isTreatmentPaused : vTDTreatmentStates.txStop - readonly property string ufInfoImageSource : isUFPaused ? "qrc:/images/iPauseGray" : "" + readonly property string ufInfoImageSource : isUFPaused ? "qrc:/images/iPauseOrange" : "" readonly property string ufInfoText : isUFPaused ? qsTr("Ultrafiltration Paused" ) : "" readonly property string ufInfoTextColor : isUFPaused ? "gray" : ""