mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-09 07:02:24 -04:00
fix vertical alignment of price column in offer book view
This commit is contained in:
parent
4a6043841a
commit
e3d7499004
1 changed files with 1 additions and 1 deletions
|
@ -912,7 +912,7 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
|
||||||
HBox hBox = new HBox();
|
HBox hBox = new HBox();
|
||||||
hBox.setSpacing(5);
|
hBox.setSpacing(5);
|
||||||
hBox.getChildren().addAll(priceLabel, percentageLabel);
|
hBox.getChildren().addAll(priceLabel, percentageLabel);
|
||||||
hBox.setPadding(new Insets(7, 0, 0, 0));
|
hBox.setAlignment(Pos.CENTER_LEFT);
|
||||||
return hBox;
|
return hBox;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue