From 5e044a51e25c5ace692d23caafbe69399dc04f1e Mon Sep 17 00:00:00 2001 From: Victor Shcherb Date: Tue, 1 Nov 2016 11:58:37 +0200 Subject: [PATCH] Disable notification no data by default --- OsmAnd/src/net/osmand/plus/OsmandSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/OsmandSettings.java b/OsmAnd/src/net/osmand/plus/OsmandSettings.java index 12cd43b5f7..6ba2f78735 100644 --- a/OsmAnd/src/net/osmand/plus/OsmandSettings.java +++ b/OsmAnd/src/net/osmand/plus/OsmandSettings.java @@ -1076,7 +1076,7 @@ public class OsmandSettings { // SAVE_TRACK_MIN_DISTANCE.setModeDefaultValue(ApplicationMode.PEDESTRIAN, 5); } - public final CommonPreference SHOW_TRIP_REC_NOTIFICATION = new BooleanPreference("show_trip_recording_notification", true).makeGlobal(); + public final CommonPreference SHOW_TRIP_REC_NOTIFICATION = new BooleanPreference("show_trip_recording_notification", false).makeGlobal(); // this value string is synchronized with settings_pref.xml preference name public final CommonPreference LIVE_MONITORING = new BooleanPreference("live_monitoring", false).makeGlobal();