Take hidden folders into account for collapsible

This commit is contained in:
M66B
2019-05-23 08:40:35 +02:00
parent 6e5aba2535
commit e5d91ac619
3 changed files with 16 additions and 4 deletions

View File

@@ -40,6 +40,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
public int unseen;
public int executing;
public int childs;
public int hidden_childs;
@Override
public boolean equals(Object obj) {
@@ -53,7 +54,8 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
this.content == other.content &&
this.unseen == other.unseen &&
this.executing == other.executing &&
this.childs == other.childs);
this.childs == other.childs &&
this.hidden_childs == other.hidden_childs);
} else
return false;
}