diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-02-19 19:37:20 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-02-19 19:37:20 -0800 |
commit | 3d46d6a0cf923eeea00052e6ed9cfd0a32965736 (patch) | |
tree | 6047787ce52f16135badeb2a556993ffe6029bdf /app | |
parent | d12073561a26e86d59a93bec103e3c8c66a6d612 (diff) |
settings: wifi: qml: fix security icon for wifi APs
APs without any security functionality were still showing a padlock.
Change-Id: I32e3e844ffa4e25aaa51a717fb6ccb8cdb8858c2
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/wifi/Wifi.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/wifi/Wifi.qml b/app/wifi/Wifi.qml index 85e8b60..e17b1f5 100644 --- a/app/wifi/Wifi.qml +++ b/app/wifi/Wifi.qml @@ -51,7 +51,7 @@ SettingPage { svg = "3Bars" else svg = "Full" - if (security === "Open") { + if (security === "none") { return 'images/HMI_Settings_Wifi_%1.svg'.arg(svg) } else { return 'images/HMI_Settings_Wifi_Locked_%1.svg'.arg(svg) |