Index: sources/gui/qml/pages/settings/SettingsWiFi.qml =================================================================== diff -u -r87ca1f6fca153e2ac05425d2dc5937d5a46ba206 -rbba484de53409dec9c7d3cf331621d9733154872 --- sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 87ca1f6fca153e2ac05425d2dc5937d5a46ba206) +++ sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision bba484de53409dec9c7d3cf331621d9733154872) @@ -150,14 +150,20 @@ color : Colors.textMain horizontalAlignment : TextInput.Alignleft width : labelWidth - text : qsTr("Internet") + text : qsTr("Connection") } Text { id : _internetConnectionStatus font.pixelSize : Fonts.fontPixelTextRectExtra color : Colors.textMain horizontalAlignment : TextInput.Alignleft - text : vNetwork.connectedToInternet ? "Connected" : "Not Connected" + text : { + let result = "Network: "; + result += vNetwork.connectedToNetwork ? "Connected\n" : "Not Connected\n" + result += "Internet: " + result += vNetwork.connectedToInternet ? "Connected" : "Not Connected" + return result; + } width : entryWidth } } @@ -189,7 +195,7 @@ anchors.rightMargin : _root.rightMargin delegate : TouchRect { id : _delegate - property bool isCurrrentNetwork: vNetwork.macAddress === macAddress + property bool isCurrrentNetwork: vNetwork.macAddress === macAddress && vNetwork.connectedToNetwork clip : true text.text : ssid