Index: sources/gui/qml/pages/settings/SettingsDateTime.qml =================================================================== diff -u -r7077e38c74db9cccb5496ffefcf8936c0916de76 -ra89b5249df072be403141463d7d88728b66a848e --- sources/gui/qml/pages/settings/SettingsDateTime.qml (.../SettingsDateTime.qml) (revision 7077e38c74db9cccb5496ffefcf8936c0916de76) +++ sources/gui/qml/pages/settings/SettingsDateTime.qml (.../SettingsDateTime.qml) (revision a89b5249df072be403141463d7d88728b66a848e) @@ -29,8 +29,8 @@ */ SettingsBase { id: _root - property int labelWidth : 275 - property int entryWidth : 100 + labelWidth : 275 + entryWidth : 100 readonly property bool isValid : _year .textInput.acceptableInput && @@ -80,7 +80,7 @@ width : entryWidth validator : IntValidator { bottom : 0 - top : 24 + top : 23 } } @@ -147,6 +147,7 @@ width : entryWidth validator : IntValidator { bottom : 1970 + top : 2100 // seems date command is not accepting more than 2100 } } }