mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
parent
ab6e8ed6dd
commit
f85ef0579b
1 changed files with 7 additions and 1 deletions
|
@ -315,6 +315,12 @@ public class FragmentCompose extends FragmentEx {
|
|||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPause() {
|
||||
onAction(R.id.action_save);
|
||||
super.onPause();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
||||
inflater.inflate(R.menu.menu_compose, menu);
|
||||
|
@ -789,7 +795,7 @@ public class FragmentCompose extends FragmentEx {
|
|||
getFragmentManager().popBackStack();
|
||||
Toast.makeText(getContext(), R.string.title_draft_trashed, Toast.LENGTH_LONG).show();
|
||||
} else if (action == R.id.action_save)
|
||||
Snackbar.make(view, R.string.title_draft_saved, Snackbar.LENGTH_LONG).show();
|
||||
Toast.makeText(getContext(), R.string.title_draft_saved, Toast.LENGTH_LONG).show();
|
||||
else if (action == R.id.action_send) {
|
||||
getFragmentManager().popBackStack();
|
||||
Toast.makeText(getContext(), R.string.title_queued, Toast.LENGTH_LONG).show();
|
||||
|
|
Loading…
Reference in a new issue