Skip to content

Commit

Permalink
set "open trade table" max height
Browse files Browse the repository at this point in the history
  • Loading branch information
preland committed Jan 23, 2024
1 parent 374379b commit 49bfb7a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ public void initialize() {
tableView.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
tableView.setPlaceholder(new AutoTooltipLabel(Res.get("table.placeholder.noItems", Res.get("shared.openTrades"))));
tableView.setMinHeight(100);
tableView.setMaxHeight(100);

tradeIdColumn.setComparator(Comparator.comparing(o -> o.getTrade().getId()));
dateColumn.setComparator(Comparator.comparing(o -> o.getTrade().getDate()));
Expand Down

0 comments on commit 49bfb7a

Please sign in to comment.