feat: make uniform notification icons setting false by default

I set these as true by default when merging because I liked the Mo, now lets make it false by default because Its cooler
This commit is contained in:
LucasGGamerM
2023-04-01 14:22:18 -03:00
parent 9f8f7adb26
commit 7459181fa9

View File

@@ -90,7 +90,7 @@ public class GlobalUserPreferences{
showBoosts=prefs.getBoolean("showBoosts", true);
loadNewPosts=prefs.getBoolean("loadNewPosts", true);
showNewPostsButton=prefs.getBoolean("showNewPostsButton", true);
uniformNotificationIcon=prefs.getBoolean("uniformNotificationIcon", true);
uniformNotificationIcon=prefs.getBoolean("uniformNotificationIcon", false);
showInteractionCounts=prefs.getBoolean("showInteractionCounts", false);
alwaysExpandContentWarnings=prefs.getBoolean("alwaysExpandContentWarnings", false);
disableMarquee=prefs.getBoolean("disableMarquee", false);