mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 15:11:03 +00:00
Consistent ordering
This commit is contained in:
parent
8838e471df
commit
d311e52062
1 changed files with 10 additions and 10 deletions
|
@ -2119,16 +2119,6 @@ public class FragmentAccount extends FragmentBase {
|
|||
seen.name = context.getString(R.string.title_seen);
|
||||
folders.add(seen);
|
||||
|
||||
EntityFolder flag = new EntityFolder();
|
||||
flag.id = EntityMessage.SWIPE_ACTION_FLAG;
|
||||
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);
|
||||
|
@ -2139,6 +2129,16 @@ public class FragmentAccount extends FragmentBase {
|
|||
hide.name = context.getString(R.string.title_hide);
|
||||
folders.add(hide);
|
||||
|
||||
EntityFolder flag = new EntityFolder();
|
||||
flag.id = EntityMessage.SWIPE_ACTION_FLAG;
|
||||
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 move = new EntityFolder();
|
||||
move.id = EntityMessage.SWIPE_ACTION_MOVE;
|
||||
move.name = context.getString(R.string.title_move);
|
||||
|
|
Loading…
Reference in a new issue