Skip to content

Commit

Permalink
Merge pull request bisq-network#3624 from rafaelpac/tooltip-colon
Browse files Browse the repository at this point in the history
Add colon after "Payment method" on tooltip
  • Loading branch information
ripcurlx authored Nov 18, 2019
2 parents 7c83230 + 2e85195 commit 906a252
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ String getPaymentMethodToolTip(OfferBookListItem item) {
String result = "";
if (item != null) {
Offer offer = item.getOffer();
result = Res.get("shared.paymentMethod") + " " + Res.get(offer.getPaymentMethod().getId());
result = Res.getWithCol("shared.paymentMethod") + " " + Res.get(offer.getPaymentMethod().getId());
result += "\n" + Res.getWithCol("shared.currency") + " " + CurrencyUtil.getNameAndCode(offer.getCurrencyCode());

String countryCode = offer.getCountryCode();
Expand Down

0 comments on commit 906a252

Please sign in to comment.