diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-08 12:29:52 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-08 12:29:52 -0700 |
commit | eefda2b090b9c802051f60b95078993d312a8a1d (patch) | |
tree | 09b8efecfdd5d6d8ad6781564d760a2369ba6d15 /mobile-widgets/qml | |
parent | a1ec0d672493d1bb5e05042b1e0a05fce8ba42e4 (diff) | |
download | subsurface-eefda2b090b9c802051f60b95078993d312a8a1d.tar.gz |
QML UI: reformat the warning message when turning off auto sync
This is silly - it should be set up so it wraps by itself...
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 0bb981cd7..cf67d2d5d 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -147,10 +147,12 @@ Kirigami.ApplicationWindow { onTriggered: { syncToCloud = !syncToCloud if (!syncToCloud) { - var alertText = "Turning off automatic sync to cloud causes all data to only be stored locally.\n" - alertText += "This can be very useful in situations with limited or no network access.\n" - alertText += "Please chose 'Manual sync with cloud' if you have network connectivity\n" - alertText += "and want to sync your data to cloud storage." + var alertText = "Turning off automatic sync to cloud causes all data\n" + alertText +=" to only be stored locally.\n" + alertText += "This can be very useful in situations with\n" + alertText += " limited or no network access.\n" + alertText += "Please chose 'Manual sync with cloud' if you have network\n" + alertText += " connectivity and want to sync your data to cloud storage." showPassiveNotification(alertText, 10000) } } |