View Single Post
12-02-22, 08:19 PM   #5
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
Within your code at that GetItem spot, tt is a tooltip frame. When you register GetItemGCDInfos at the bottom, the UI is feeding your function the current tooltip frame being rendered, which is usually GameTooltip.

Replace

tt:GetItem()

with

TooltipUtil.GetDisplayedItem(tt)
  Reply With Quote