avoid privacy issues: No automatic logging by default
This commit is contained in:
parent
21e3339114
commit
91cdab0711
1 changed files with 2 additions and 2 deletions
|
@ -1042,8 +1042,8 @@ public class OsmandSettings {
|
|||
public final CommonPreference<Boolean> SAVE_TRACK_TO_GPX = new BooleanPreference("save_track_to_gpx", false).makeProfile().cache();
|
||||
|
||||
{
|
||||
SAVE_TRACK_TO_GPX.setModeDefaultValue(ApplicationMode.CAR, true);
|
||||
SAVE_TRACK_TO_GPX.setModeDefaultValue(ApplicationMode.BICYCLE, true);
|
||||
SAVE_TRACK_TO_GPX.setModeDefaultValue(ApplicationMode.CAR, false);
|
||||
SAVE_TRACK_TO_GPX.setModeDefaultValue(ApplicationMode.BICYCLE, false);
|
||||
SAVE_TRACK_TO_GPX.setModeDefaultValue(ApplicationMode.PEDESTRIAN, false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue