From 904539024e97b5980050c4ad65a6d2a901f3cb3a Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 3 Apr 2016 19:00:49 -0500 Subject: 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 --- qt-mobile/qml/CloudCredentials.qml | 2 +- qt-mobile/qml/main.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'qt-mobile/qml') 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(); } -- cgit v1.2.3-70-g09d2