|
|
|
@ -1582,6 +1582,7 @@ public class FragmentMessages extends FragmentBase
|
|
|
|
|
|
|
|
|
|
private void searchAccount(long account) {
|
|
|
|
|
Bundle aargs = new Bundle();
|
|
|
|
|
aargs.putInt("icon", R.drawable.twotone_search_24);
|
|
|
|
|
aargs.putString("title", getString(R.string.title_search_in));
|
|
|
|
|
aargs.putLong("account", account);
|
|
|
|
|
aargs.putLongArray("disabled", new long[]{});
|
|
|
|
@ -1925,6 +1926,7 @@ public class FragmentMessages extends FragmentBase
|
|
|
|
|
triggered = true;
|
|
|
|
|
|
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
|
args.putInt("icon", R.drawable.twotone_drive_file_move_24);
|
|
|
|
|
args.putString("title", getString(R.string.title_move_to_folder));
|
|
|
|
|
args.putLong("account", account);
|
|
|
|
|
args.putString("thread", thread);
|
|
|
|
@ -2982,6 +2984,7 @@ public class FragmentMessages extends FragmentBase
|
|
|
|
|
|
|
|
|
|
private void onSwipeMove(final @NonNull TupleMessageEx message) {
|
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
|
args.putInt("icon", R.drawable.twotone_drive_file_move_24);
|
|
|
|
|
args.putString("title", getString(R.string.title_move_to_folder));
|
|
|
|
|
args.putLong("account", message.account);
|
|
|
|
|
args.putLongArray("disabled", new long[]{message.folder});
|
|
|
|
@ -4140,6 +4143,7 @@ public class FragmentMessages extends FragmentBase
|
|
|
|
|
|
|
|
|
|
private void onActionMoveSelectionAccount(long account, boolean copy, List<Long> disabled) {
|
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
|
args.putInt("icon", copy ? R.drawable.twotone_file_copy_24 : R.drawable.twotone_drive_file_move_24);
|
|
|
|
|
args.putString("title", getString(copy ? R.string.title_copy_to : R.string.title_move_to_folder));
|
|
|
|
|
args.putLong("account", account);
|
|
|
|
|
args.putBoolean("copy", copy);
|
|
|
|
|