stop cursor from jumping when upload finishes while composing toot

This commit is contained in:
Conny Duck 2017-12-05 20:56:42 +01:00
parent 59955047fe
commit 46dce4293a
1 changed files with 2 additions and 3 deletions

View File

@ -1307,10 +1307,9 @@ public final class ComposeActivity extends BaseActivity
builder.append(media.textUrl);
builder.setSpan(item.uploadUrl, 1, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
int cursorStart = textEditor.getSelectionStart();
int cursorEnd = textEditor.getSelectionEnd();
textEditor.append(builder);
if (cursorStart == textEditor.getText().length()) {
textEditor.setSelection(cursorStart);
}
textEditor.setSelection(cursorStart, cursorEnd);
waitForMediaLatch.countDown();
}