mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-25 15:32:52 +00:00
Explicitly clear link focus
This commit is contained in:
parent
11a5bea975
commit
c5e36dd1cb
1 changed files with 7 additions and 0 deletions
|
@ -5468,6 +5468,13 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
uriTitle.getHost().equalsIgnoreCase(uri.getHost())
|
||||
? View.GONE : View.VISIBLE);
|
||||
|
||||
new Handler().post(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
etLink.clearFocus();
|
||||
}
|
||||
});
|
||||
|
||||
final Context context = getContext();
|
||||
|
||||
return new AlertDialog.Builder(context)
|
||||
|
|
Loading…
Reference in a new issue