mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Fixed showing flagged messages in compact folder view
This commit is contained in:
parent
25d97e88e8
commit
7471259011
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
|
|||
if (btnHelp != null)
|
||||
btnHelp.setVisibility(folder.error == null ? View.GONE : View.VISIBLE);
|
||||
|
||||
grpFlagged.setVisibility(show_compact || !show_flagged ? View.GONE : View.VISIBLE);
|
||||
grpFlagged.setVisibility(show_flagged ? View.VISIBLE : View.GONE);
|
||||
grpExtended.setVisibility(show_compact ? View.GONE : View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue