mirror of
https://github.com/boldsuck/haveno.git
synced 2025-01-10 18:14:30 +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.setMouseTransparent(false);
|
||||||
field.setTooltip(new Tooltip(Res.get("tooltip.openPopupForDetails")));
|
field.setTooltip(new Tooltip(Res.get("tooltip.openPopupForDetails")));
|
||||||
field.setOnAction(event -> tradeDetailsWindow.show(tradeOptional.get()));
|
field.setOnAction(event -> tradeDetailsWindow.show(tradeOptional.get()));
|
||||||
|
setGraphic(field);
|
||||||
|
setText("");
|
||||||
} else {
|
} else {
|
||||||
setText(item.getShortTradeId());
|
setText(item.getShortTradeId());
|
||||||
|
setGraphic(null);
|
||||||
|
if (field != null)
|
||||||
|
field.setOnAction(null);
|
||||||
}
|
}
|
||||||
setGraphic(field);
|
|
||||||
} else {
|
} else {
|
||||||
setGraphic(null);
|
setGraphic(null);
|
||||||
setText("");
|
setText("");
|
||||||
|
|
Loading…
Reference in a new issue