aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r--qt-mobile/qml/CloudCredentials.qml7
1 files changed, 6 insertions, 1 deletions
diff --git a/qt-mobile/qml/CloudCredentials.qml b/qt-mobile/qml/CloudCredentials.qml
index cd82444fc..c2ebb88ab 100644
--- a/qt-mobile/qml/CloudCredentials.qml
+++ b/qt-mobile/qml/CloudCredentials.qml
@@ -35,6 +35,8 @@ Item {
id: login
text: manager.cloudUserName
Layout.fillWidth: true
+ inputMethodHints: Qt.ImhEmailCharactersOnly |
+ Qt.ImhNoAutoUppercase
}
MobileComponents.Label {
@@ -45,7 +47,10 @@ Item {
id: password
text: manager.cloudPassword
echoMode: TextInput.Password
- inputMethodHints: Qt.ImhEmailCharactersOnly
+ inputMethodHints: Qt.ImhEmailCharactersOnly |
+ Qt.ImhSensitiveData |
+ Qt.ImhHiddenText |
+ Qt.ImhNoAutoUppercase
Layout.fillWidth: true
}
GridLayout {