mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Merge pull request #6296 from jmacxx/change_buy_sell_button_text
Clarify wording on buy/sell offerbook button
This commit is contained in:
commit
b29b054469
1 changed files with 1 additions and 1 deletions
|
@ -1177,7 +1177,7 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
|
|||
iconView.setId(isSellOffer ? "image-buy-white" : "image-sell-white");
|
||||
button.setId(isSellOffer ? "buy-button" : "sell-button");
|
||||
button.setStyle("-fx-text-fill: white");
|
||||
title = Res.get("offerbook.takeOffer");
|
||||
title = Res.get(isSellOffer ? "shared.buy" : "shared.sell");
|
||||
button.setTooltip(new Tooltip(Res.get("offerbook.takeOfferButton.tooltip", model.getDirectionLabelTooltip(offer))));
|
||||
button.setOnAction(e -> onTakeOffer(offer));
|
||||
button2.setManaged(false);
|
||||
|
|
Loading…
Add table
Reference in a new issue