QML UI: hide keyboard before saving credentials

This way the user gets to see the git notifications.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-04-06 11:40:34 -07:00
parent 6725d54db2
commit f21b36d9ba

View file

@ -268,6 +268,7 @@ Kirigami.ScrollablePage {
property QtObject saveAction: Action {
iconName: "document-save"
onTriggered: {
Qt.inputMethod.hide()
startPage.saveCredentials();
}
}