diff --git a/desktop/src/main/java/haveno/desktop/main/market/offerbook/OfferBookChartView.java b/desktop/src/main/java/haveno/desktop/main/market/offerbook/OfferBookChartView.java index e89c78dac9c..08d122ecce8 100644 --- a/desktop/src/main/java/haveno/desktop/main/market/offerbook/OfferBookChartView.java +++ b/desktop/src/main/java/haveno/desktop/main/market/offerbook/OfferBookChartView.java @@ -166,7 +166,7 @@ public void initialize() { HBox.setHgrow(tupleSell.second, Priority.ALWAYS); tupleBuy.second.setUserData(OfferDirection.BUY.name()); tupleSell.second.setUserData(OfferDirection.SELL.name()); - bottomHBox.getChildren().addAll(tupleBuy.second, tupleSell.second); + bottomHBox.getChildren().addAll(tupleSell.second, tupleBuy.second); root.getChildren().addAll(currencyComboBoxTuple.first, chartPane, bottomHBox); }