Added folder option show flagged messages

This commit is contained in:
M66B
2020-05-19 08:46:49 +02:00
parent 121236a5d6
commit 96e739dfb4
8 changed files with 134 additions and 25 deletions

View File

@@ -46,6 +46,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
public int messages;
public int content;
public int unseen;
public int flagged;
public int executing;
@Ignore
@@ -74,6 +75,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
this.messages == other.messages &&
this.content == other.content &&
this.unseen == other.unseen &&
this.flagged == other.flagged &&
this.executing == other.executing);
} else
return false;