From ea3515abd5949720722edd3487c68c1a9e5ba03f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Fran=C4=8De=C5=A1kin?= Date: Thu, 9 May 2019 10:26:25 +0200 Subject: [PATCH] Made Microhard password fields hidden --- src/Microhard/MicrohardSettings.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microhard/MicrohardSettings.qml b/src/Microhard/MicrohardSettings.qml index a4bb1b8..42865f9 100644 --- a/src/Microhard/MicrohardSettings.qml +++ b/src/Microhard/MicrohardSettings.qml @@ -222,7 +222,7 @@ QGCView { id: configPassword text: QGroundControl.microhardManager.configPassword enabled: true - inputMethodHints: Qt.ImhHiddenText + echoMode: TextInput.Password Layout.minimumWidth: _valueWidth } QGCLabel { @@ -232,7 +232,7 @@ QGCView { id: encryptionKey text: QGroundControl.microhardManager.encryptionKey enabled: true - inputMethodHints: Qt.ImhHiddenText + echoMode: TextInput.Password Layout.minimumWidth: _valueWidth } }