Merge pull request #211 from alexbakker/show-account-default

Set pref_account_name to true by default
This commit is contained in:
Michael Schättgen 2019-09-16 21:33:15 +02:00 committed by GitHub
commit a88d1cf11e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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() {