Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml =================================================================== diff -u -r56e378f7504701b9e9a9dccaf205aef2fd52c58e -r2c9421bd6da03c7e0bd0bfa1f49fa95c2bd18a95 --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml (.../TreatmentAdjustmentBase.qml) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml (.../TreatmentAdjustmentBase.qml) (revision 2c9421bd6da03c7e0bd0bfa1f49fa95c2bd18a95) @@ -34,16 +34,18 @@ property bool closeVisible: true property bool confirmVisible: true property bool backVisible: false - property bool pausedVisible: false + property alias information: _information signal closeClicked() signal confirmClicked() signal backClicked() onVisibleChanged: { - notification.text = "" + notificationText = "" } + notification.iconVisible: false + header: Rectangle { id : _headerRect ConfirmButton { id : _confirmButton @@ -76,9 +78,12 @@ } } - NotificationBarSmall { id: _pausedNotification - visible : pausedVisible && !notification.visible - text : qsTr("Ultrafiltration is paused.") - imageSource: "qrc:/images/iPauseGray" + // this notification shall not be confused with the _notification in the parent ModalDailog + // this meant to be used specifically as current state notification like paused/off in UF + // it is also available in TreatmentAdjustmentFlow and TreatmentAdjustmentDuration but not used. + NotificationBarSmall { id: _information + visible : false + imageSource : "" + text : "" } }