Skip to content

Commit

Permalink
Fixing a bug in privateauras indicator maybe related to (CF issue #1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelnpsp committed Oct 21, 2024
1 parent 08da2f1 commit ffa5eb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/IndicatorPrivateAuras.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ local Grid2 = Grid2
local wipe = wipe
local strmatch = strmatch

local tooltipFrame
local tooltipFrame -- frame used to DISABLE tooltips

if not C_UnitAuras then return end
local AddPrivateAuraAnchor = C_UnitAuras.AddPrivateAuraAnchor
local RemovePrivateAuraAnchor = C_UnitAuras.RemovePrivateAuraAnchor
if not AddPrivateAuraAnchor then return end

local function AcquireTooltipFrame()
GetHideTooltipFrame = function() tooltipFrame:Show(); return tooltipFrame end
AcquireTooltipFrame = function() tooltipFrame:Show(); return tooltipFrame end
tooltipFrame = CreateFrame("Frame", nil , Grid2LayoutFrame)
tooltipFrame:SetFrameStrata("TOOLTIP")
tooltipFrame:SetFrameLevel(255)
Expand Down

0 comments on commit ffa5eb9

Please sign in to comment.