Fixed focus at end / insert image

This commit is contained in:
M66B 2022-03-08 08:34:05 +01:00
parent 61f38e7e10
commit 32921af0de
1 changed files with 1 additions and 1 deletions

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