Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml =================================================================== diff -u -r596aa427447d3757005ae759c64c52ebb26b9503 -r7c550f70136f2f33520661a2e97fe99021cc681d --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml (.../TreatmentAdjustmentBase.qml) (revision 596aa427447d3757005ae759c64c52ebb26b9503) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml (.../TreatmentAdjustmentBase.qml) (revision 7c550f70136f2f33520661a2e97fe99021cc681d) @@ -10,7 +10,7 @@ * \date (last) 04-Oct-2022 * \author (original) Behrouz NematiPour * \date (original) 22-Mar-2020 - * + */ // Qt @@ -44,6 +44,7 @@ width : Variables.adjustmentDialogWidth height : Variables.adjustmentDialogHeight y : Math.round((Variables.applicationHeight - height) / 2) - Variables.headerHeight + radius : Variables.adjustmentDialogRadius onVisibleChanged: { notificationText = "" @@ -106,8 +107,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 - visible : false - imageSource : "" - text : "" + height : notification.height + visible : false + radius : notification.radius + imageSource : "" + imageDiameter : 26 + imageVerticalCenter : true + imageFillMode : Image.PreserveAspectFit + textfontSize : 30 + textfontWeight : Font.Medium + text : "" } }