switch default led color to blue

Fixes #3115
Closes #3116

// FREEBIE
This commit is contained in:
Rhodey Orbits 2015-05-06 23:20:04 -07:00 committed by Moxie Marlinspike
parent b6e241b0dc
commit d0f26f3e97
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
<ListPreference
android:key="pref_led_color"
android:defaultValue="green"
android:defaultValue="blue"
android:title="@string/preferences__led_color"
android:dependency="pref_key_enable_notifications"
android:entries="@array/pref_led_color_entries"

View File

@ -403,7 +403,7 @@ public class TextSecurePreferences {
}
public static String getNotificationLedColor(Context context) {
return getStringPreference(context, LED_COLOR_PREF, "green");
return getStringPreference(context, LED_COLOR_PREF, "blue");
}
public static String getNotificationLedPattern(Context context) {