Disabled Gravatars

This commit is contained in:
M66B
2020-01-18 10:37:36 +01:00
parent 9419ca1e4a
commit 6522f18110
2 changed files with 3 additions and 2 deletions

View File

@@ -599,6 +599,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
swColorStripe.setChecked(prefs.getBoolean("color_stripe", true));
swAvatars.setChecked(prefs.getBoolean("avatars", true));
swGravatars.setChecked(prefs.getBoolean("gravatars", false));
swGravatars.setVisibility(BuildConfig.DEBUG ? View.VISIBLE : View.GONE);
swGeneratedIcons.setChecked(prefs.getBoolean("generated_icons", true));
swIdenticons.setChecked(prefs.getBoolean("identicons", false));
swIdenticons.setEnabled(swGeneratedIcons.isChecked());