summaryrefslogtreecommitdiffstats
path: root/qt-mobile
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-01 20:12:12 -0500
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-01 20:15:44 -0500
commitcace666741ead8a26b71e0cd073382cd94a227f7 (patch)
treea3ebd4a363284afe2684efe87988dc48f234fb43 /qt-mobile
parentf19ffb28c6913036e3a15a09976293231b6e3f4b (diff)
downloadsubsurface-cace666741ead8a26b71e0cd073382cd94a227f7.tar.gz
QML UI: avoid having the virtual keyboard show briefly at startup
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r--qt-mobile/qml/CloudCredentials.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/CloudCredentials.qml b/qt-mobile/qml/CloudCredentials.qml
index 4f1484ce8..de33f886c 100644
--- a/qt-mobile/qml/CloudCredentials.qml
+++ b/qt-mobile/qml/CloudCredentials.qml
@@ -24,7 +24,7 @@ Item {
width: subsurfaceTheme.columnWidth - 2 * Kirigami.Units.gridUnit
onVisibleChanged: {
- if (visible) {
+ if (visible && !manager.accessingCloud) {
manager.appendTextToLog("Credential scrn: show kbd was: " + (Qt.inputMethod.isVisible ? "visible" : "invisible"))
Qt.inputMethod.show()
login.forceActiveFocus()