Index: sources/gui/qml/pages/settings/SettingsWiFi.qml =================================================================== diff -u -rd4c0956d5487d3674429d72fe85dd75692b6d91f -r39a17b342040431504af6cfe4669d3b445b7c5cc --- sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision d4c0956d5487d3674429d72fe85dd75692b6d91f) +++ sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 39a17b342040431504af6cfe4669d3b445b7c5cc) @@ -172,7 +172,8 @@ delegate : TouchRect { id : _delegate readonly property bool isNetworkSupported : isSecurityTypeSupported - readonly property color networkDelegateTextColor : (isNetworkSupported ? Colors.textMain : Colors.textDisableButton) + readonly property color networkDelegateTextColor : isNetworkSupported ? Colors.textMain : Colors.textDisableButton + readonly property string postSecurityTypeLabel : isNetworkSupported ? " " : qsTr("- Not Supported") property bool isCurrrentNetwork : vNetwork.macAddress === macAddress @@ -196,7 +197,7 @@ bottom : parent.bottom } font.pixelSize : Fonts.fontPixelDialogText - text : securityTypes + text : securityTypes + _delegate.postSecurityTypeLabel color : _delegate.networkDelegateTextColor }