Skip to content

Commit

Permalink
grandexchange: Format 'Price each' value for items in additional info…
Browse files Browse the repository at this point in the history
…rmation layout
  • Loading branch information
sainttx committed May 27, 2018
1 parent 7a0d719 commit 2ee80d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void updateOffer(ItemComposition offerItem, BufferedImage itemImage, @Nullable G

offerInfo.setText(offerState);

itemPrice.setText(htmlLabel("Price each: ", newOffer.getPrice() + ""));
itemPrice.setText(htmlLabel("Price each: ", StackFormatter.formatNumber(newOffer.getPrice())));

String action = buying ? "Spent: " : "Received: ";

Expand Down

0 comments on commit 2ee80d6

Please sign in to comment.