mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-13 11:09:10 +01:00
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:
parent
9cdd4ae623
commit
f32f1d488a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue