Replace selection on insert template

This commit is contained in:
M66B 2020-09-16 07:27:34 +02:00
parent 90d1af3401
commit ccc782be35
1 changed files with 16 additions and 5 deletions

View File

@ -1636,13 +1636,24 @@ public class FragmentCompose extends FragmentBase {
}, null, getContext()); }, null, getContext());
int start = etBody.getSelectionStart(); int start = etBody.getSelectionStart();
if (start < 0) { int end = etBody.getSelectionEnd();
start = etBody.length() - 1; if (start > end) {
if (start < 0) int tmp = start;
start = 0; start = end;
end = tmp;
} }
etBody.getText().insert(start, spanned); if (start >= 0 && start < end)
etBody.getText().replace(start, end, spanned);
else {
if (start < 0) {
start = etBody.length() - 1;
if (start < 0)
start = 0;
}
etBody.getText().insert(start, spanned);
}
return true; return true;
} }