diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-01 20:12:12 -0500 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-01 20:15:44 -0500 |
commit | cace666741ead8a26b71e0cd073382cd94a227f7 (patch) | |
tree | a3ebd4a363284afe2684efe87988dc48f234fb43 | |
parent | f19ffb28c6913036e3a15a09976293231b6e3f4b (diff) | |
download | subsurface-cace666741ead8a26b71e0cd073382cd94a227f7.tar.gz |
QML UI: avoid having the virtual keyboard show briefly at startup
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-mobile/qml/CloudCredentials.qml | 2 |
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() |