Merge pull request #1076 from Kamielvf/item-price-tooltip-linebreak
Item price tooltip: use linebreak instead of comma
This commit is contained in:
@@ -227,8 +227,12 @@ class ItemPricesOverlay extends Overlay
|
|||||||
}
|
}
|
||||||
if (haValue > 0)
|
if (haValue > 0)
|
||||||
{
|
{
|
||||||
itemStringBuilder.append(gePrice > 0 ? ", " : "")
|
if (gePrice > 0)
|
||||||
.append("HA: ")
|
{
|
||||||
|
itemStringBuilder.append("</br>");
|
||||||
|
}
|
||||||
|
|
||||||
|
itemStringBuilder.append("HA: ")
|
||||||
.append(StackFormatter.quantityToStackSize(haValue * qty))
|
.append(StackFormatter.quantityToStackSize(haValue * qty))
|
||||||
.append(" gp");
|
.append(" gp");
|
||||||
if (config.showEA() && qty > 1)
|
if (config.showEA() && qty > 1)
|
||||||
|
|||||||
Reference in New Issue
Block a user