Index: sources/gui/qml/pages/settings/SettingsBase.qml =================================================================== diff -u -r506a9e3db1a20bda1685e38c5e9041005c9a4a4f -rf7392d985121b21e9f9814e444b0810cd1d00b18 --- sources/gui/qml/pages/settings/SettingsBase.qml (.../SettingsBase.qml) (revision 506a9e3db1a20bda1685e38c5e9041005c9a4a4f) +++ sources/gui/qml/pages/settings/SettingsBase.qml (.../SettingsBase.qml) (revision f7392d985121b21e9f9814e444b0810cd1d00b18) @@ -68,7 +68,10 @@ top : parent.top right : parent.right } - onClicked: _root.confirmClicked() + onClicked: { + _root.confirmClicked() + _keyboard.setVisible(false) + } } Text { id: _titleText @@ -81,15 +84,14 @@ color : Colors.textMain font.pixelSize : Fonts.fontPixelTitle } - // 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. + + // this meant to be used specifically as current state notification mostrly for the message respose back reasons. NotificationBarSmall { id: _information - visible : true // false + visible : text color : Colors.transparent textColor : Colors.white imageSource : "" - text : "Test Notification" + text : "" anchors.bottomMargin: Variables.mainMenuHeight + Variables.minVGap } }