diff options
Diffstat (limited to 'qt-mobile/qml/main.qml')
-rw-r--r-- | qt-mobile/qml/main.qml | 4 |
1 files changed, 2 insertions, 2 deletions
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(); } |