Index: sources/gui/qml/pages/SettingsDateTimeSet.qml =================================================================== diff -u -r917f7b344c2c8121c2d5241326b0e9b7b2aa1396 -rb5a7852d2637f7969680fbd3d2c821a6a74a8ccd --- sources/gui/qml/pages/SettingsDateTimeSet.qml (.../SettingsDateTimeSet.qml) (revision 917f7b344c2c8121c2d5241326b0e9b7b2aa1396) +++ sources/gui/qml/pages/SettingsDateTimeSet.qml (.../SettingsDateTimeSet.qml) (revision b5a7852d2637f7969680fbd3d2c821a6a74a8ccd) @@ -85,7 +85,7 @@ bottom: 0 top: 24 } - textInput.text: "HH" + textInput.text: vDateTime.hour onEnterPressed: { _keyboard.setVisible(false) } @@ -113,7 +113,7 @@ bottom: 0 top: 60 } - textInput.text: "MM" + textInput.text: vDateTime.minute onEnterPressed: { _keyboard.setVisible(false) } @@ -145,7 +145,7 @@ bottom: 1 top: 12 } - textInput.text: "MM" + textInput.text: vDateTime.month onEnterPressed: { _keyboard.setVisible(false) } @@ -173,7 +173,7 @@ bottom: 1 top: 31 } - textInput.text: "DD" + textInput.text: vDateTime.day onEnterPressed: { _keyboard.setVisible(false) } @@ -202,7 +202,7 @@ bottom: 1970 top: 2200 } - textInput.text: "YYYY" + textInput.text: vDateTime.year onEnterPressed: { _keyboard.setVisible(false) } @@ -216,7 +216,7 @@ backgroundColor: Colors.backgroundButtonSelect textColor: Colors.textMain text.text: qsTr("Save") - onClicked: console.debug("Clicked Save Date and Time") + onClicked: vDateTime.doSave() } } }