From: Matt Ranostay Date: Thu, 28 Feb 2019 10:47:35 +0000 (-0800) Subject: settings: wifi: qml: redisplay dialog on incorrect passphase X-Git-Tag: 7.99.1~7 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F97%2F20397%2F1;p=apps%2Fsettings.git settings: wifi: qml: redisplay dialog on incorrect passphase Bug-AGL: SPEC-2183 Change-Id: Ia789a58b01d6df9e32d8f167e1f33ea19e1c37a2 Signed-off-by: Matt Ranostay --- diff --git a/app/wifi/Wifi.qml b/app/wifi/Wifi.qml index b4f4485..f183b8d 100644 --- a/app/wifi/Wifi.qml +++ b/app/wifi/Wifi.qml @@ -99,6 +99,7 @@ SettingPage { } else { console.log("Connecting to ", ssid, " (", service, ")") networkNameText.font.italic = 1 + password.text = '' network.connect(service) } } @@ -130,8 +131,6 @@ SettingPage { onVisibleChanged: { if (visible) { password.forceActiveFocus() - } else { - password.text = '' } } @@ -163,7 +162,10 @@ SettingPage { } Button { text: 'Cancel' - onClicked: dialog.visible = false + onClicked: { + dialog.visible = false + password.text = '' + } } } } @@ -184,5 +186,10 @@ SettingPage { password.reqid = id dialog.visible = true } + + onInvalidPassphrase: { + console.log("Invalid passphrase for (", service, ")") + network.connect(service) + } } }