mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Set default cloud timeout to ten seconds for mobile app
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
9db886b8c8
commit
2d5f023b58
1 changed files with 5 additions and 1 deletions
|
@ -94,7 +94,11 @@ struct preferences default_prefs = {
|
|||
.vpmb_conservatism = 3,
|
||||
.distance_threshold = 1000,
|
||||
.time_threshold = 600,
|
||||
.cloud_timeout = 5
|
||||
#if defined(SUBSURFACE_MOBILE)
|
||||
.cloud_timeout = 10,
|
||||
#else
|
||||
.cloud_timeout = 5,
|
||||
#endif
|
||||
};
|
||||
|
||||
int run_survey;
|
||||
|
|
Loading…
Add table
Reference in a new issue