aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-06 11:40:34 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-06 11:40:34 -0700
commitf21b36d9ba15bb36b4b3cda49498cbf95606c2ae (patch)
tree87078a805a019bc41a7df61d4c530857acee8692 /mobile-widgets
parent6725d54db2a1793c3483385daffd6be8acc6a3b9 (diff)
downloadsubsurface-f21b36d9ba15bb36b4b3cda49498cbf95606c2ae.tar.gz
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>
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qml/DiveList.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml
index f6f163efa..906eb9445 100644
--- a/mobile-widgets/qml/DiveList.qml
+++ b/mobile-widgets/qml/DiveList.qml
@@ -268,6 +268,7 @@ Kirigami.ScrollablePage {
property QtObject saveAction: Action {
iconName: "document-save"
onTriggered: {
+ Qt.inputMethod.hide()
startPage.saveCredentials();
}
}