mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 14:11:00 +00:00
Fixed compose focus
This commit is contained in:
parent
8fec757c7e
commit
46a17dc37c
1 changed files with 6 additions and 0 deletions
|
@ -1033,6 +1033,12 @@ public class FragmentCompose extends FragmentEx {
|
|||
getActivity().invalidateOptionsMenu();
|
||||
etBody.setText(body);
|
||||
etBody.setSelection(0);
|
||||
new Handler().post(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
etTo.requestFocus();
|
||||
}
|
||||
});
|
||||
}
|
||||
}.load(FragmentCompose.this, a);
|
||||
|
||||
|
|
Loading…
Reference in a new issue