Show messages with disabled identity dimmed

This commit is contained in:
M66B
2019-06-13 14:32:07 +02:00
parent 02e58770e9
commit e98c5aea27
3 changed files with 12 additions and 7 deletions

View File

@@ -32,6 +32,7 @@ public class TupleMessageEx extends EntityMessage {
public String folderType;
public String identityName;
public String identityEmail;
public Boolean identitySynchronize;
public int count;
public int unseen;
public int unflagged;
@@ -55,6 +56,7 @@ public class TupleMessageEx extends EntityMessage {
this.folderType.equals(other.folderType) &&
Objects.equals(this.identityName, other.identityName) &&
Objects.equals(this.identityEmail, other.identityEmail) &&
Objects.equals(this.identitySynchronize, other.identitySynchronize) &&
this.count == other.count &&
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&