mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-26 23:50:58 +01:00
Display name only by default
This commit is contained in:
@@ -359,8 +359,6 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
|
||||
private void setOptions() {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||
|
||||
boolean compact = prefs.getBoolean("compact", false);
|
||||
|
||||
String startup = prefs.getString("startup", "unified");
|
||||
String[] startupValues = getResources().getStringArray(R.array.startupValues);
|
||||
for (int pos = 0; pos < startupValues.length; pos++)
|
||||
@@ -378,7 +376,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
|
||||
swIdenticons.setChecked(prefs.getBoolean("identicons", false));
|
||||
swIdenticons.setEnabled(swGeneratedIcons.isChecked());
|
||||
swCircular.setChecked(prefs.getBoolean("circular", true));
|
||||
swNameEmail.setChecked(prefs.getBoolean("name_email", !compact));
|
||||
swNameEmail.setChecked(prefs.getBoolean("name_email", false));
|
||||
swSubjectTop.setChecked(prefs.getBoolean("subject_top", false));
|
||||
swSubjectItalic.setChecked(prefs.getBoolean("subject_italic", true));
|
||||
swFlags.setChecked(prefs.getBoolean("flags", true));
|
||||
|
||||
Reference in New Issue
Block a user