diff --git a/desktop/src/main/java/bisq/desktop/main/shared/ChatView.java b/desktop/src/main/java/bisq/desktop/main/shared/ChatView.java index c71b18520e..278b665059 100644 --- a/desktop/src/main/java/bisq/desktop/main/shared/ChatView.java +++ b/desktop/src/main/java/bisq/desktop/main/shared/ChatView.java @@ -483,7 +483,6 @@ public class ChatView extends AnchorPane { visible = true; icon = AwesomeIcon.OK_SIGN; text = Res.get("support.acknowledged"); - } else if (message.ackErrorProperty().get() != null) { visible = true; icon = AwesomeIcon.EXCLAMATION_SIGN; @@ -494,12 +493,10 @@ public class ChatView extends AnchorPane { visible = true; icon = AwesomeIcon.OK; text = Res.get("support.arrived"); - statusHBox.setOpacity(0.5); } else if (message.storedInMailboxProperty().get()) { visible = true; icon = AwesomeIcon.ENVELOPE; text = Res.get("support.savedInMailbox"); - statusHBox.setOpacity(0.5); } else { visible = false; log.debug("updateMsgState called but no msg state available. message={}", message);