1
0
Fork 0
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:
M66B 2022-03-08 08:34:05 +01:00
parent 61f38e7e10
commit 32921af0de

View file

@ -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);
}