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.99.1~2 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=7815f53f5f53617c0980af958b2ceb89b784bb47;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 } }