persistent nofication should be the default

This commit is contained in:
Tom Hennen 2015-11-01 16:19:34 -05:00
parent 20960b9bff
commit 68e6b2a957
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@
android:summary="@string/pref_expandNotify_sum"
android:title="@string/pref_expandNotify_title"/>
<CheckBoxPreference
android:defaultValue="false"
android:defaultValue="true"
android:enabled="true"
android:key="prefPersistNotify"
android:summary="@string/pref_persistNotify_sum"

View File

@ -183,7 +183,7 @@ public class UserPreferences {
* @return {@code true} if notifications are persistent, {@code false} otherwise
*/
public static boolean isPersistNotify() {
return prefs.getBoolean(PREF_PERSISTENT_NOTIFICATION, false);
return prefs.getBoolean(PREF_PERSISTENT_NOTIFICATION, true);
}
/**