Revert "Refactoring"

This reverts commit af0afc955c.
This commit is contained in:
M66B 2021-11-03 17:09:48 +01:00
parent 56ea00242a
commit 65e61f437d
1 changed files with 10 additions and 14 deletions

View File

@ -1459,20 +1459,6 @@ public class FragmentCompose extends FragmentBase {
pgpService.bindToService();
}
@Override
public void onStart() {
super.onStart();
bottom_navigation.findViewById(R.id.action_send).setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Bundle args = new Bundle();
args.putBoolean("force_dialog", true);
onAction(R.id.action_check, args, "force");
return true;
}
});
}
@Override
public void onResume() {
super.onResume();
@ -1670,6 +1656,16 @@ public class FragmentCompose extends FragmentBase {
bottom_navigation.getMenu().findItem(R.id.action_send).setTitle(R.string.title_encrypt);
else
bottom_navigation.getMenu().findItem(R.id.action_send).setTitle(R.string.title_send);
bottom_navigation.findViewById(R.id.action_send).setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Bundle args = new Bundle();
args.putBoolean("force_dialog", true);
onAction(R.id.action_check, args, "force");
return true;
}
});
}
@Override