Made signed/encrypted icon clickable

This commit is contained in:
M66B
2022-01-20 09:06:19 +01:00
parent e195836f86
commit 053a99652c
6 changed files with 72 additions and 53 deletions

View File

@@ -57,8 +57,6 @@ public class TupleMessageEx extends EntityMessage {
public int unseen;
public int unflagged;
public int drafts;
public int signed;
public int encrypted;
public int visible;
public int visible_unseen;
public Long totalSize;
@@ -163,8 +161,6 @@ public class TupleMessageEx extends EntityMessage {
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&
this.drafts == other.drafts &&
this.signed == other.signed &&
this.encrypted == other.encrypted &&
this.visible == other.visible &&
this.visible_unseen == other.visible_unseen &&
Objects.equals(this.totalSize, other.totalSize) &&