Show selected folders in navigation menu

This commit is contained in:
M66B
2019-04-29 10:14:55 +02:00
parent 3f391a2ddd
commit 6fdc1cae50
28 changed files with 2954 additions and 583 deletions

View File

@@ -21,8 +21,6 @@ package eu.faircode.email;
public class TupleAccountEx extends EntityAccount {
public int unseen;
public int unsent;
public int operations;
public int identities; // synchronizing
public boolean drafts;
@@ -43,8 +41,6 @@ public class TupleAccountEx extends EntityAccount {
TupleAccountEx other = (TupleAccountEx) obj;
return (super.equals(obj) &&
this.unseen == other.unseen &&
this.unsent == other.unsent &&
this.operations == other.operations &&
this.identities == other.identities &&
this.drafts == other.drafts);
} else