View Single Post
07-30-14, 03:47 PM   #16
semlar
A Pyroguard Emberseer
 
semlar's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 1,060
Try this instead..
Lua Code:
  1. frame:SetScript("OnEvent", function(self, event, ...)
  2.     if ... == addonName then
  3.         BetterItemTooltip:OnInitialize()
  4.     end
  5. end)
  6. frame:RegisterEvent("ADDON_LOADED")

Last edited by semlar : 07-30-14 at 03:58 PM.
  Reply With Quote