diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-03 19:00:49 -0500 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-04 14:17:57 -0700 |
commit | 904539024e97b5980050c4ad65a6d2a901f3cb3a (patch) | |
tree | cc50da23f0fb4a109174d153689207e280ff69d2 /qt-mobile/qml/CloudCredentials.qml | |
parent | eea1ff6a83a318d7749110baa81c249a6faea8ef (diff) | |
download | subsurface-904539024e97b5980050c4ad65a6d2a901f3cb3a.tar.gz |
Make accessingCloud an integer so it can convey more information
This will be used to simulate a progress bar eventually.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/CloudCredentials.qml')
-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 de33f886c..aa7c57651 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 && !manager.accessingCloud) { + if (visible && manager.accessingCloud < 0) { manager.appendTextToLog("Credential scrn: show kbd was: " + (Qt.inputMethod.isVisible ? "visible" : "invisible")) Qt.inputMethod.show() login.forceActiveFocus() |