Quantcast

spaced the ideal gem info away from the weights better in the tooltip

Paul Spears [10-29-09 - 21:17]
spaced the ideal gem info away from the weights better in the tooltip
Filename
WeightsWatcher.lua
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