Index: sources/gui/qml/pages/settings/SettingsWiFi.qml =================================================================== diff -u -rf0c8b8720a2e314268445a4a20fe701292026f6f -ra2a273600d25e863214833ead3324a63fb4759f1 --- sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision f0c8b8720a2e314268445a4a20fe701292026f6f) +++ sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision a2a273600d25e863214833ead3324a63fb4759f1) @@ -86,7 +86,7 @@ textInput.width : entryWidth label.width : labelWidth label.text : qsTr("Gateway") - hasCursor : false // set false for now to disable the static IP entry for phase 1 + hasCursor : false // set false for now to disable the static IP entry for phase 1 validator : ipValidator } @@ -107,6 +107,7 @@ label.width : labelWidth label.text : qsTr("DNS") hasCursor : false // set false for now to disable the static IP entry for phase 1 +// validator : ipValidator // Will fail the validor if there are more than 1 ip } } @@ -205,11 +206,11 @@ onConfirmClicked : { if ( isPassword ) { if( passwordCurrent.length > 0 ) { - vDevice.doConnectWifi( true, ssid, passwordCurrent ) + vDevice.doWifiConnect( true, ssid, passwordCurrent ) pop() } } else { - vDevice.doConnectWifi( false, ssid, "" ) + vDevice.doWifiConnect( false, ssid, "" ) pop() } }