Skip to content

Commit

Permalink
android: fix input method for service login
Browse files Browse the repository at this point in the history
  • Loading branch information
janbar committed Aug 4, 2018
1 parent fb727f8 commit f7f3ac8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/components/ServiceLogin.qml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Rectangle {
right: parent.right
}
focus: true
inputMethodHints: Qt.ImhNoPredictiveText
inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhEmailCharactersOnly
placeholderText: qsTr("User name")
font.pointSize: units.fs("medium")
}
Expand All @@ -85,7 +85,7 @@ Rectangle {
right: parent.right
}
focus: true
inputMethodHints: Qt.ImhNoPredictiveText
inputMethodHints: Qt.ImhHiddenText
placeholderText: qsTr("Password")
echoMode: TextInput.Password
font.pointSize: units.fs("medium")
Expand Down

0 comments on commit f7f3ac8

Please sign in to comment.