From: Matt Ranostay Date: Sat, 13 Apr 2019 01:20:24 +0000 (-0700) Subject: settings: wifi: qml: disable toggling button on password dialog X-Git-Tag: 7.0.2^0 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=31819b7d3c2162a3442fd9248d8e812503879eaf;p=apps%2Fsettings.git settings: wifi: qml: disable toggling button on password dialog Bug-AGL: SPEC-2299 Change-Id: I3bc1eb7bac127a06026795c953339db9758e8529 Signed-off-by: Matt Ranostay --- diff --git a/app/wifi/Wifi.qml b/app/wifi/Wifi.qml index f3b6d32..d9ab949 100644 --- a/app/wifi/Wifi.qml +++ b/app/wifi/Wifi.qml @@ -87,6 +87,7 @@ SettingPage { text: 'Forget Network' onClicked: { console.log("Removing network ", ssid, " (", service, ")") + networkNameText.font.italic = 0 network.remove(service) } } @@ -131,6 +132,9 @@ SettingPage { onVisibleChanged: { if (visible) { password.forceActiveFocus() + root.checkable = false + } else { + root.checkable = true } }