Skip to content

Commit 37f2857

Browse files
committed
fix vertical alignment of price column in offer book view
1 parent 33c9628 commit 37f2857

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

desktop/src/main/java/haveno/desktop/main/offer/offerbook/OfferBookView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ private HBox getPriceAndPercentage(OfferBookListItem item) {
912912
HBox hBox = new HBox();
913913
hBox.setSpacing(5);
914914
hBox.getChildren().addAll(priceLabel, percentageLabel);
915-
hBox.setPadding(new Insets(7, 0, 0, 0));
915+
hBox.setAlignment(Pos.CENTER_LEFT);
916916
return hBox;
917917
}
918918
};

0 commit comments

Comments
 (0)