diff options
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r-- | qt-mobile/qml/CloudCredentials.qml | 2 | ||||
-rw-r--r-- | qt-mobile/qml/main.qml | 4 |
2 files changed, 3 insertions, 3 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() diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index c011ba4c1..3ed5aeac9 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -21,8 +21,8 @@ Kirigami.ApplicationWindow { property QtObject notification: null property bool showingDiveList: false onAccessingCloudChanged: { - if (accessingCloud) { - showPassiveNotification("Accessing Subsurface Cloud Storage", 500000); + if (accessingCloud >= 0) { + showPassiveNotification("Accessing Subsurface Cloud Storage " + accessingCloud +"%", 500000); } else { hidePassiveNotification(); } |