diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-11-14 09:10:06 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-14 09:10:06 -0800 |
commit | 76d07635270bb3068b7d9a559b481d3c094f0d7b (patch) | |
tree | cd507fe34e03b8c5cc2c10e9d991a50f44635d9e /subsurface-core/pref.h | |
parent | 24404a401d5a21134b153000fffc74bd429a0631 (diff) | |
download | subsurface-76d07635270bb3068b7d9a559b481d3c094f0d7b.tar.gz |
Location service: make distance and time threshold configurable
Right now the distance is always in meters, the mobile app doesn't deal
with units at all, anyway.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core/pref.h')
-rw-r--r-- | subsurface-core/pref.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/subsurface-core/pref.h b/subsurface-core/pref.h index 9f5f587e2..348dcfbf2 100644 --- a/subsurface-core/pref.h +++ b/subsurface-core/pref.h @@ -123,6 +123,8 @@ struct preferences { geocoding_prefs_t geocoding; enum deco_mode deco_mode; short conservatism_level; + int time_threshold; + int distance_threshold; }; enum unit_system_values { METRIC, |