QML UI: keep cloud access notification until done

Instead of having the notification disappear after five seconds, keep it
visible until we are done accessing the cloud. That seems to be more
intuitive.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-03-10 18:00:44 -08:00
parent d1247ba19c
commit 9d6c755f48

View file

@ -17,7 +17,7 @@ MobileComponents.ApplicationWindow {
property QtObject notification: null
onAccessingCloudChanged: {
if (accessingCloud) {
showPassiveNotification("Accessing Subsurface Cloud Storage", 5000);
showPassiveNotification("Accessing Subsurface Cloud Storage", 500000);
} else {
hidePassiveNotification();
}