OfferBook: Show Complete Text Of Action Button If Enough Space Available

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
This commit is contained in:
Alva Swanson 2021-12-08 13:09:03 +01:00
parent 9cdd4ae623
commit f32f1d488a
No known key found for this signature in database
GPG key ID: 004760E77F753090

View file

@ -1087,7 +1087,7 @@ public class OfferBookView extends ActivatableViewAndModel<GridPane, OfferBookVi
{
button.setGraphic(iconView);
button.setMinWidth(200);
button.setMaxWidth(200);
button.setMaxWidth(Double.MAX_VALUE);
button.setGraphicTextGap(10);
}