From 658ca915dd75d4d955d49ea36f220049ec3b3ee0 Mon Sep 17 00:00:00 2001 From: Manuel Simon Hirsig Date: Sat, 27 Feb 2016 20:06:04 +0100 Subject: [PATCH] changed tooltip layout --- core.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core.lua b/core.lua index 7e3e46c..cbd8034 100644 --- a/core.lua +++ b/core.lua @@ -1,5 +1,5 @@ Aux = { - version = '2.5.6', + version = '2.5.7', blizzard_ui_shown = false, orig = {}, } @@ -38,7 +38,7 @@ function Aux.on_load() local market_value = Aux.history.market_value(item_key) local market_value_line = 'Today: ' - market_value_line = market_value_line..(market_value and Aux.auction_listing.percentage_historical(Aux.round(market_value / value * 100))..' ('..EnhTooltip.GetTextGSC(market_value)..')' or '---') + market_value_line = market_value_line..(market_value and EnhTooltip.GetTextGSC(market_value)..' ('..Aux.auction_listing.percentage_historical(Aux.round(market_value / value * 100))..')' or '---') EnhTooltip.AddLine(market_value_line, nil, true) EnhTooltip.LineColor(0.1, 0.8, 0.5)