change auto return default in car mode from 7s to 10s as 7 is not in selection list

This commit is contained in:
sonora 2012-02-10 00:11:32 +01:00
parent 2e1c0bcebb
commit 587a1faaf3

View file

@ -528,7 +528,7 @@ public class OsmandSettings {
// seconds to auto_follow
public final CommonPreference<Integer> AUTO_FOLLOW_ROUTE = new IntPreference("auto_follow_route", 0, false);
{
AUTO_FOLLOW_ROUTE.setModeDefaultValue(ApplicationMode.CAR, 7);
AUTO_FOLLOW_ROUTE.setModeDefaultValue(ApplicationMode.CAR, 10);
AUTO_FOLLOW_ROUTE.setModeDefaultValue(ApplicationMode.BICYCLE, 10);
AUTO_FOLLOW_ROUTE.setModeDefaultValue(ApplicationMode.PEDESTRIAN, 15);
}