Set pref_account_name to true by default

This changes the default settings so that account names are shown by default
This commit is contained in:
Alexander Bakker 2019-09-15 21:04:36 +02:00
parent ac222c4946
commit d7d3d52a30
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ public class Preferences {
}
public boolean isAccountNameVisible() {
return _prefs.getBoolean("pref_account_name", false);
return _prefs.getBoolean("pref_account_name", true);
}
public boolean isIntroDone() {

View file

@ -29,7 +29,7 @@
app:iconSpaceReserved="false"/>
<androidx.preference.SwitchPreferenceCompat
android:defaultValue="false"
android:defaultValue="true"
android:key="pref_account_name"
android:title="@string/pref_account_name_title"
android:summary="@string/pref_account_name_summary"