feat: update mention reblogger automatically settings icon

This commit is contained in:
LucasGGamerM 2023-05-27 09:07:25 -03:00
parent e49e485ba3
commit d71d17e5af
1 changed files with 1 additions and 2 deletions

View File

@ -92,8 +92,7 @@ public class BehaviourFragment extends SettingsBaseFragment{
GlobalUserPreferences.defaultToUnlistedReplies=i.checked;
GlobalUserPreferences.save();
}));
// TODO find a good icon for this setting
items.add(new SwitchItem(R.string.mo_mention_reblogger_automatically, R.drawable.ic_fluent_balloon_24_regular, GlobalUserPreferences.mentionRebloggerAutomatically, i -> {
items.add(new SwitchItem(R.string.mo_mention_reblogger_automatically, R.drawable.ic_fluent_comment_mention_24_regular, GlobalUserPreferences.mentionRebloggerAutomatically, i -> {
GlobalUserPreferences.mentionRebloggerAutomatically=i.checked;
GlobalUserPreferences.save();
}));