Index: sources/gui/qml/pages/SettingsWifi.qml =================================================================== diff -u -r2085962f7bd0a2239ee5c857928a11d5e38fe0a2 -r1bfd7fcf476b6cc1ad7fce69e8970bc55ec1a621 --- sources/gui/qml/pages/SettingsWifi.qml (.../SettingsWifi.qml) (revision 2085962f7bd0a2239ee5c857928a11d5e38fe0a2) +++ sources/gui/qml/pages/SettingsWifi.qml (.../SettingsWifi.qml) (revision 1bfd7fcf476b6cc1ad7fce69e8970bc55ec1a621) @@ -164,11 +164,25 @@ } } + Text { id: _noNetworks + text: qsTr("No Networks in Range") + color: Colors.textMain + font.pixelSize: Fonts.fontPixelTextRectExtra + visible: !vNetworkModel.scanInProgress && vNetworkModel.rowCount() === 0 + anchors { + top: parent.top + right: parent.right + rightMargin: 25 + } + } + ListView { id: _pairedDevices model: vNetworkModel - anchors.top: parent.top - anchors.bottom: parent.bottom - anchors.right: parent.right + anchors { + top: parent.top + bottom: parent.bottom + right: parent.right + } width: Variables.settingsWIFINetworksWidth clip: true spacing: 10