mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-01-03 17:40:10 +00:00
fix multiple trade ids per line of arbitration table
This commit is contained in:
parent
d8c6c64992
commit
09638d7046
1 changed files with 5 additions and 1 deletions
|
@ -1114,10 +1114,14 @@ public abstract class DisputeView extends ActivatableView<VBox, Void> {
|
|||
field.setMouseTransparent(false);
|
||||
field.setTooltip(new Tooltip(Res.get("tooltip.openPopupForDetails")));
|
||||
field.setOnAction(event -> tradeDetailsWindow.show(tradeOptional.get()));
|
||||
setGraphic(field);
|
||||
setText("");
|
||||
} else {
|
||||
setText(item.getShortTradeId());
|
||||
setGraphic(null);
|
||||
if (field != null)
|
||||
field.setOnAction(null);
|
||||
}
|
||||
setGraphic(field);
|
||||
} else {
|
||||
setGraphic(null);
|
||||
setText("");
|
||||
|
|
Loading…
Reference in a new issue