mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-13 11:09:10 +01:00
Remove setOpacity in 2 remaining cases
This commit is contained in:
parent
71b7348d1a
commit
5fc33b6521
1 changed files with 0 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue