persistent nofication should be the default
This commit is contained in:
parent
20960b9bff
commit
68e6b2a957
|
@ -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"
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue