Index: sources/gui/qml/pages/settings/SettingsWiFi.qml =================================================================== diff -u -r56ad953ae404fcf6956bd4f76b7a54b12d0285d3 -r87ca1f6fca153e2ac05425d2dc5937d5a46ba206 --- sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 56ad953ae404fcf6956bd4f76b7a54b12d0285d3) +++ sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 87ca1f6fca153e2ac05425d2dc5937d5a46ba206) @@ -120,7 +120,7 @@ Row { id : _ssidRow anchors.top : _ipColumn.bottom - anchors.topMargin : 50 + anchors.topMargin : 25 anchors.left : parent.left anchors.leftMargin : _root.leftMargin Text { id : _ssidLabel @@ -140,6 +140,28 @@ } } + Row { id : _internetConnection + anchors.top : _ssidRow.bottom + anchors.topMargin : 25 + anchors.left : parent.left + anchors.leftMargin : _root.leftMargin + Text { id : _internetConnectionLabel + font.pixelSize : Fonts.fontPixelTextRectExtra + color : Colors.textMain + horizontalAlignment : TextInput.Alignleft + width : labelWidth + text : qsTr("Internet") + } + + Text { id : _internetConnectionStatus + font.pixelSize : Fonts.fontPixelTextRectExtra + color : Colors.textMain + horizontalAlignment : TextInput.Alignleft + text : vNetwork.connectedToInternet ? "Connected" : "Not Connected" + width : entryWidth + } + } + TouchRect { id : _scanButton anchors.bottom : parent.bottom anchors.bottomMargin: Variables.mainMenuHeight * 2 + Variables.minVGap