diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-06-12 11:48:56 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-12 11:48:56 -0700 |
commit | 492369b3125b2c1c91f134c360110440b03d33b6 (patch) | |
tree | 4434e38a493f80a4fd5418350a4a1f002270fd87 /subsurfacestartup.c | |
parent | 3a0ffb70a0549b5c717e256cf602aadf2ea782a8 (diff) | |
download | subsurface-492369b3125b2c1c91f134c360110440b03d33b6.tar.gz |
Cloud storage: Add preference option whether to sync in the background
This defaults to on as that's the most useful setting for the average
user.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurfacestartup.c')
-rw-r--r-- | subsurfacestartup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/subsurfacestartup.c b/subsurfacestartup.c index 0254f0a5a..391cbeb60 100644 --- a/subsurfacestartup.c +++ b/subsurfacestartup.c @@ -65,7 +65,8 @@ struct preferences default_prefs = { .album_id = NULL, .access_token = NULL }, - .defaultsetpoint = 1100 + .defaultsetpoint = 1100, + .cloud_background_sync = true }; int run_survey; |