feat(settings): add summary to reblog action

This commit is contained in:
FineFindus
2023-05-19 21:35:15 +02:00
parent e8290e2f78
commit f14977ba24
2 changed files with 3 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ public class NotificationsFragment extends SettingsBaseFragment {
GlobalUserPreferences.uniformNotificationIcon = i.checked;
GlobalUserPreferences.save();
}));
items.add(new SwitchItem(R.string.mo_swap_bookmark_with_reblog, R.drawable.ic_boost, GlobalUserPreferences.swapBookmarkWithBoostAction, i -> {
items.add(new SwitchItem(R.string.mo_swap_bookmark_with_reblog, R.string.mo_swap_bookmark_with_reblog_summary, R.drawable.ic_boost, GlobalUserPreferences.swapBookmarkWithBoostAction, i -> {
GlobalUserPreferences.swapBookmarkWithBoostAction=i.checked;
GlobalUserPreferences.save();
}));