WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   PTR UI Bugs (https://www.wowinterface.com/forums/forumdisplay.php?f=176)
-   -   BfA - Bug with ScanTooltip:SetHyperlink? (https://www.wowinterface.com/forums/showthread.php?t=56240)

galvin 05-25-18 04:38 PM

BfA - Bug with ScanTooltip:SetHyperlink?
 
I have code that checks the spell book on aura changed or spell book changed events.
I use ScanTooltip:SetHyperlink(format('spell:%s', SpellID))
This works the first time, but later ScanTooltip:NumLines() returns 0.
This works on live with no issues. So either a bug or something was changed?

The code that makes ScanTooltip
Code:

local function CreateScanTooltip()
  if ScanTooltip == nil then
    ScanTooltip = CreateFrame('GameTooltip')

    ScanTooltip:SetOwner(UIParent, 'ANCHOR_NONE')
    for Index = 1, 8 do
      local Left = ScanTooltip:CreateFontString()
      local Right = ScanTooltip:CreateFontString()
      ScanTooltip['L' .. Index] = Left
      ScanTooltip['R' .. Index] = Right

      ScanTooltip:AddFontStrings(Left, Right)
    end
  end
end


galvin 05-25-18 11:50 PM

Found a fix. Never had to do this on live. Need to do ScanTooltip:ClearLines() prior to SetHyperlink()

Curious to know whats changed.


All times are GMT -6. The time now is 04:08 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI