mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 03:15:39 +01:00
Allow selecting folders when hiding folders with read messages
This commit is contained in:
@@ -63,8 +63,8 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
|
||||
@Ignore
|
||||
public int childs_unseen = 0;
|
||||
|
||||
boolean isHidden() {
|
||||
return (this.hide_seen && this.unseen + this.childs_unseen == 0);
|
||||
boolean isHidden(boolean selecting) {
|
||||
return (!selecting && this.hide_seen && this.unseen + this.childs_unseen == 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user