View Single Post
04/11/14, 06:32 AM   #5
Shinni
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 167
only read the code, didn't test it. i noticed the following:

line 262
pinManager:CreatePin(_G[pinType], v.key, v.zone, v.x, v.y, v.radius)
should be
pinManager:CreatePin(_G[pinType], v.key, v.x, v.y, v.radius)


line 271
local pinTooltipCreator = { creator = function(pin) InformationTooltip:AddLine(pin.key.tooltip) end, tooltip = InformationTooltip }
should be
local pinTooltipCreator = { creator = function(pin) InformationTooltip:AddLine(pin.m_PinTag.tooltip) end, tooltip = InformationTooltip }
  Reply With Quote