Skip to content

Commit

Permalink
OfferBook: Show Complete Text Of Action Button If Enough Space Available
Browse files Browse the repository at this point in the history
Even if the app is maximized it does not show the full text of the
action button if the text is long. Switching Bisq to German and
maximizing the window reveals the problem.

Fixes #5862
  • Loading branch information
alvasw committed Dec 8, 2021
1 parent 9cdd4ae commit f32f1d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ public TableCell<OfferBookListItem, OfferBookListItem> call(TableColumn<OfferBoo
{
button.setGraphic(iconView);
button.setMinWidth(200);
button.setMaxWidth(200);
button.setMaxWidth(Double.MAX_VALUE);
button.setGraphicTextGap(10);
}

Expand Down

0 comments on commit f32f1d4

Please sign in to comment.