Index: sources/gui/qml/pages/settings/SettingsWiFi.qml =================================================================== diff -u -r56ad953ae404fcf6956bd4f76b7a54b12d0285d3 -rac23b968f565c2beeb153ca2d554b8f868634512 --- sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 56ad953ae404fcf6956bd4f76b7a54b12d0285d3) +++ sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision ac23b968f565c2beeb153ca2d554b8f868634512) @@ -43,10 +43,10 @@ readonly property int topMargin : topMarginContent - 40 // moved up to top of the keyboard readonly property bool isValid : - _ipAddress .textInput.acceptableInput && - _gateway .textInput.acceptableInput && - _subnetmask .textInput.acceptableInput && - _dns .textInput.acceptableInput + _ipAddress .textInput.acceptableInput + && _gateway .textInput.acceptableInput + && _subnetmask .textInput.acceptableInput + && _dns .textInput.acceptableInput confirmEnabled : isValid confirmVisible : false // since the static setting is done one by one seems confirm is not needed for now. @@ -72,6 +72,7 @@ label.text : qsTr("IP Address") textInput.width : entryWidth label.width : labelWidth + hasCarret : true validator : ipValidator onEnterPressed : { _keyboard.setVisible(false) @@ -85,6 +86,7 @@ textInput.width : entryWidth label.width : labelWidth label.text : qsTr("Gateway") + hasCarret : true validator : ipValidator onEnterPressed : { _keyboard.setVisible(false) @@ -98,6 +100,7 @@ textInput.width : entryWidth label.width : labelWidth label.text : qsTr("Subnet Mask") + hasCarret : true validator : ipValidator onEnterPressed : { _keyboard.setVisible(false) @@ -110,6 +113,7 @@ textInput.width : entryWidth label.width : labelWidth label.text : qsTr("DNS") + hasCarret : true validator : ipValidator onEnterPressed : { _keyboard.setVisible(false)