reverse buy and sell xmr panels in market view (#1876)

This commit is contained in:
woodser 2025-07-20 16:34:44 -04:00 committed by GitHub
parent 45e54b69e8
commit 68ee80c6ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -166,7 +166,7 @@ public class OfferBookChartView extends ActivatableViewAndModel<VBox, OfferBookC
HBox.setHgrow(tupleSell.second, Priority.ALWAYS); HBox.setHgrow(tupleSell.second, Priority.ALWAYS);
tupleBuy.second.setUserData(OfferDirection.BUY.name()); tupleBuy.second.setUserData(OfferDirection.BUY.name());
tupleSell.second.setUserData(OfferDirection.SELL.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); root.getChildren().addAll(currencyComboBoxTuple.first, chartPane, bottomHBox);
} }