Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml =================================================================== diff -u -r975e1964b60365b24c74be139c6b84369a7248ce -r135c320c850b09365c04e03d95195412c12fba72 --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml (.../TreatmentAdjustmentBase.qml) (revision 975e1964b60365b24c74be139c6b84369a7248ce) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml (.../TreatmentAdjustmentBase.qml) (revision 135c320c850b09365c04e03d95195412c12fba72) @@ -44,8 +44,13 @@ width : Variables.adjustmentDialogWidth height : Variables.adjustmentDialogHeight y : Math.round((Variables.applicationHeight - height) / 2) - Variables.headerHeight - notification.height : Variables.notificationHeight + radius : Variables.adjustmentDialogRadius + notification { + height : Variables.adjustmentNotificationHeight + radius : _root.radius + } + onVisibleChanged: { notificationText = "" } @@ -107,12 +112,15 @@ // 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 - height : Variables.notificationHeight + height : notification.height visible : false + radius : notification.radius imageSource : "" imageDiameter : 26 imageVerticalCenter : true imageFillMode : Image.PreserveAspectFit + textfontSize : 30 + textfontWeight : Font.Medium text : "" } }