Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed35f19f authored by Mark Harman's avatar Mark Harman
Browse files

Fix default value for PreferenceKeys.ShowAnglePreferenceKey, should be false now.

parent 713840c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -311,7 +311,7 @@ public class DrawPreview {
		show_zoom_pref = sharedPreferences.getBoolean(PreferenceKeys.ShowZoomPreferenceKey, true);
		show_battery_pref = sharedPreferences.getBoolean(PreferenceKeys.ShowBatteryPreferenceKey, true);

		show_angle_pref = sharedPreferences.getBoolean(PreferenceKeys.ShowAnglePreferenceKey, true);
		show_angle_pref = sharedPreferences.getBoolean(PreferenceKeys.ShowAnglePreferenceKey, false);
		String angle_highlight_color = sharedPreferences.getString(PreferenceKeys.ShowAngleHighlightColorPreferenceKey, "#14e715");
		angle_highlight_color_pref = Color.parseColor(angle_highlight_color);
		show_geo_direction_pref = sharedPreferences.getBoolean(PreferenceKeys.ShowGeoDirectionPreferenceKey, false);