Allow selecting folders when hiding folders with read messages

This commit is contained in:
M66B
2023-02-13 15:12:18 +01:00
parent 828b153182
commit 2c4d1e96f3
2 changed files with 5 additions and 5 deletions

View File

@@ -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