diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-10 18:00:44 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-10 18:00:44 -0800 |
commit | 9d6c755f48368af005879e28583de4f2135e15fe (patch) | |
tree | aae82b68d45098207bb6bee203ccf03fc5b4c101 | |
parent | d1247ba19c4f0d8110de8fff50578313c667ab60 (diff) | |
download | subsurface-9d6c755f48368af005879e28583de4f2135e15fe.tar.gz |
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>
-rw-r--r-- | qt-mobile/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index 1b7958f24..3569535e0 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -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(); } |