Prevent flicker on marking expanded message read

This commit is contained in:
M66B
2019-09-29 13:42:25 +02:00
parent e95228ee47
commit a685da21a9
3 changed files with 21 additions and 6 deletions

View File

@@ -30,6 +30,7 @@ public class TupleMessageEx extends EntityMessage {
public String accountName;
public Integer accountColor;
public boolean accountNotify;
public boolean accountAutoSeen;
public String folderName;
public String folderDisplay;
public String folderType;
@@ -57,6 +58,7 @@ public class TupleMessageEx extends EntityMessage {
Objects.equals(this.accountName, other.accountName) &&
Objects.equals(this.accountColor, other.accountColor) &&
this.accountNotify == other.accountNotify &&
this.accountAutoSeen == other.accountAutoSeen &&
this.folderName.equals(other.folderName) &&
Objects.equals(this.folderDisplay, other.folderDisplay) &&
this.folderType.equals(other.folderType) &&