mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Always show bottom trash/archive button
This commit is contained in:
parent
37f5c71177
commit
2e5679f66a
1 changed files with 2 additions and 2 deletions
|
@ -1550,8 +1550,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
ibTools.setImageLevel(tools ? 0 : 1);
|
||||
ibTools.setVisibility(View.VISIBLE);
|
||||
|
||||
ibTrashBottom.setVisibility(tools && trash ? View.VISIBLE : View.GONE);
|
||||
ibArchiveBottom.setVisibility(tools && archive ? View.VISIBLE : View.GONE);
|
||||
ibTrashBottom.setVisibility(trash ? View.VISIBLE : View.GONE);
|
||||
ibArchiveBottom.setVisibility(archive ? View.VISIBLE : View.GONE);
|
||||
|
||||
if (bind)
|
||||
bindBody(message, scroll);
|
||||
|
|
Loading…
Reference in a new issue