Show identity color in send dialog

This commit is contained in:
M66B
2021-04-24 17:55:21 +02:00
parent 36ef00fc32
commit 80f884aa93
4 changed files with 15 additions and 5 deletions

View File

@@ -47,6 +47,7 @@ public class TupleMessageEx extends EntityMessage {
public boolean folderReadOnly;
public String identityName;
public String identityEmail;
public Integer identityColor;
public Boolean identitySynchronize;
public Address[] senders;
public Address[] recipients;
@@ -117,6 +118,7 @@ public class TupleMessageEx extends EntityMessage {
this.folderReadOnly == other.folderReadOnly &&
Objects.equals(this.identityName, other.identityName) &&
Objects.equals(this.identityEmail, other.identityEmail) &&
Objects.equals(this.identityColor, other.identityColor) &&
Objects.equals(this.identitySynchronize, other.identitySynchronize) &&
MessageHelper.equal(this.senders, other.senders) &&
MessageHelper.equal(this.recipients, other.recipients) &&