mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 23:12:55 +00:00
Fixed focus at end / insert image
This commit is contained in:
parent
61f38e7e10
commit
32921af0de
1 changed files with 1 additions and 1 deletions
|
@ -2838,7 +2838,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
etBody.setText(body);
|
||||
|
||||
int start = args.getInt("start");
|
||||
if (start < body.length())
|
||||
if (start <= body.length())
|
||||
etBody.setSelection(start);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue