diff options
author | Rick Walsh <rickmwalsh@gmail.com> | 2015-12-30 21:46:28 +1100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-12-30 07:25:31 -0800 |
commit | 2cce4ec3a4f41fbefd72577ff2f38e4310b582c2 (patch) | |
tree | d7316054f270b7b3125e262cdc106466f21a7e42 /qt-mobile | |
parent | 6051bf9f89713f830a8d6dc3fefb74c5441788a8 (diff) | |
download | subsurface-2cce4ec3a4f41fbefd72577ff2f38e4310b582c2.tar.gz |
Mobile CloudCredentials: hide password on entry
Don't use EmailCharactersOnly input method hint for the password. This fixes
the problem of password being displayed on entry, at least on my device.
Signed-off-by: Rick Walsh <rickmwalsh@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qml/CloudCredentials.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qt-mobile/qml/CloudCredentials.qml b/qt-mobile/qml/CloudCredentials.qml index 17353d3ac..bb61cb2a2 100644 --- a/qt-mobile/qml/CloudCredentials.qml +++ b/qt-mobile/qml/CloudCredentials.qml @@ -47,8 +47,7 @@ Item { id: password text: manager.cloudPassword echoMode: TextInput.Password - inputMethodHints: Qt.ImhEmailCharactersOnly | - Qt.ImhSensitiveData | + inputMethodHints: Qt.ImhSensitiveData | Qt.ImhHiddenText | Qt.ImhNoAutoUppercase Layout.fillWidth: true |