From ca4af368bff94fcaad082d12cbcbf46fb4ad7466 Mon Sep 17 00:00:00 2001 From: Paul Spears Date: Thu, 29 Oct 2009 16:17:39 -0500 Subject: [PATCH] spaced the ideal gem info away from the weights better in the tooltip --- WeightsWatcher.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WeightsWatcher.lua b/WeightsWatcher.lua index 2220704..b0f84f2 100644 --- a/WeightsWatcher.lua +++ b/WeightsWatcher.lua @@ -228,11 +228,11 @@ function WeightsWatcher:displayItemStats(tooltip, ttname) if keyDetectors[ww_vars.options.tooltip.showIdealGems]() then gemStats = ww_weightIdealCache[class][weight][bareLink].gemStats for _, gem in ipairs(gemStats) do - tooltip:AddLine(" Using " .. gem[2] .. " (" .. gem[1] .. ")") + tooltip:AddDoubleLine(" Using " .. gem[2] .. " (" .. gem[1] .. ")", " ") if keyDetectors[ww_vars.options.tooltip.showIdealGemStats]() then for _, stat in ipairs(gem[4]) do stat, value = unpack(stat) - tooltip:AddLine(" " .. stat .. ": " .. value) + tooltip:AddDoubleLine(" " .. stat .. ": " .. value, " ") end end end -- 1.7.9.5