mirror of https://github.com/M66B/FairEmail.git
Small behavior fix
This commit is contained in:
parent
c7b6583979
commit
3a35565166
|
@ -128,7 +128,7 @@ public class EditTextMultiAutoComplete extends AppCompatMultiAutoCompleteTextVie
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
try {
|
try {
|
||||||
if (edit == null || backspace == null)
|
if (edit == null || backspace == null || !hasFocus())
|
||||||
return;
|
return;
|
||||||
ClipImageSpan[] spans = edit.getSpans(backspace, backspace, ClipImageSpan.class);
|
ClipImageSpan[] spans = edit.getSpans(backspace, backspace, ClipImageSpan.class);
|
||||||
if (spans.length == 1) {
|
if (spans.length == 1) {
|
||||||
|
|
Loading…
Reference in New Issue