Added swipe to set importance

This commit is contained in:
M66B
2023-12-02 17:10:39 +01:00
parent 480641743a
commit a0d9c07e6d
4 changed files with 37 additions and 12 deletions

View File

@@ -2122,6 +2122,11 @@ public class FragmentAccount extends FragmentBase {
flag.name = context.getString(R.string.title_flag);
folders.add(flag);
EntityFolder importance = new EntityFolder();
importance.id = EntityMessage.SWIPE_ACTION_IMPORTANCE;
importance.name = context.getString(R.string.title_set_importance);
folders.add(importance);
EntityFolder snooze = new EntityFolder();
snooze.id = EntityMessage.SWIPE_ACTION_SNOOZE;
snooze.name = context.getString(R.string.title_snooze_now);