Index: sources/gui/qml/pages/SettingsDateTimeSet.qml =================================================================== diff -u -rb5a7852d2637f7969680fbd3d2c821a6a74a8ccd -r079aae9751fe0d234adaa470bc7d23980d5e7692 --- sources/gui/qml/pages/SettingsDateTimeSet.qml (.../SettingsDateTimeSet.qml) (revision b5a7852d2637f7969680fbd3d2c821a6a74a8ccd) +++ sources/gui/qml/pages/SettingsDateTimeSet.qml (.../SettingsDateTimeSet.qml) (revision 079aae9751fe0d234adaa470bc7d23980d5e7692) @@ -88,6 +88,7 @@ textInput.text: vDateTime.hour onEnterPressed: { _keyboard.setVisible(false) + vDateTime.hour = textInput.text } } @@ -116,6 +117,7 @@ textInput.text: vDateTime.minute onEnterPressed: { _keyboard.setVisible(false) + vDateTime.minute = textInput.text } } @@ -148,6 +150,7 @@ textInput.text: vDateTime.month onEnterPressed: { _keyboard.setVisible(false) + vDateTime.month = textInput.text } } @@ -176,6 +179,7 @@ textInput.text: vDateTime.day onEnterPressed: { _keyboard.setVisible(false) + vDateTime.day = textInput.text } } @@ -205,9 +209,24 @@ textInput.text: vDateTime.year onEnterPressed: { _keyboard.setVisible(false) + vDateTime.year = textInput.text } } + NotificationBarSmall { id: _notification + imageAutoSize: true + height : 25 + color: "transparent" + imageSource : "" + text : vDateTime.status + textColor: Colors.textMain + textfontSize: Fonts.fontPixelTextRectExtra + anchors { + bottom: _save.top + bottomMargin: Variables.settingsDateTimeSetMargin + } + } + TouchRect { id: _save anchors { bottom: parent.bottom