mirror of https://github.com/M66B/FairEmail.git
parent
4e26fa1577
commit
ea004bfd36
|
@ -146,7 +146,7 @@ public class ContactInfo {
|
|||
|
||||
boolean dark = !"light".equals(tv.string);
|
||||
boolean identicons = prefs.getBoolean("identicons", false);
|
||||
if (identicons && BuildConfig.DEBUG)
|
||||
if (identicons)
|
||||
info.bitmap = Identicon.icon(key, dp, 5, dark);
|
||||
else
|
||||
info.bitmap = Identicon.letter(key, dp, dark);
|
||||
|
|
|
@ -741,7 +741,6 @@ public class FragmentOptions extends FragmentBase implements SharedPreferences.O
|
|||
swThreading.setChecked(prefs.getBoolean("threading", true));
|
||||
swAvatars.setChecked(prefs.getBoolean("avatars", true));
|
||||
swIdenticons.setChecked(prefs.getBoolean("identicons", false));
|
||||
swIdenticons.setVisibility(BuildConfig.DEBUG ? View.VISIBLE : View.GONE);
|
||||
swCircular.setChecked(prefs.getBoolean("circular", true));
|
||||
swNameEmail.setChecked(prefs.getBoolean("name_email", !compact));
|
||||
swSubjectItalic.setChecked(prefs.getBoolean("subject_italic", true));
|
||||
|
|
Loading…
Reference in New Issue