diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-18 14:35:04 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-24 08:25:51 +0900 |
commit | ab28008679a6100c14ef0a8fb6ebdb7260a7dd35 (patch) | |
tree | 36a50a4ff1e27bb64aa3eed605b2257814bc1c1b /mobile-widgets | |
parent | 1468af35190407f04bd77a0ac28801ae21307d06 (diff) | |
download | subsurface-ab28008679a6100c14ef0a8fb6ebdb7260a7dd35.tar.gz |
new mobile login: remove non existing function from CloudCredentials
the function manager.accessingCloud is not defined in QMLManager.h
Remove manager.accessingCloud.
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml index 02d66c86e..69c1d85c7 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -37,7 +37,7 @@ Item { Keys.onTabPressed: goToNext() onVisibleChanged: { - if (visible && manager.accessingCloud < 0) { + if (visible) { Qt.inputMethod.show() login.forceActiveFocus() } else { |