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-20 03:41:37 +0000 |
commit | 60b5382a5bebbf800189515bdcf6171269175fd2 (patch) | |
tree | 033d49254d4b43d9d4e61389773c63348298b941 /app | |
parent | bd354afb7d8936c5f50eb2f1980b64ee55ded862 (diff) |
settings: wifi: qml: fix security icon for wifi APsflounder_6.0.5flounder/6.0.56.0.5flounder
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) |