Skip to content

Commit

Permalink
It might not be called directly, but it is a new function we want to …
Browse files Browse the repository at this point in the history
…avoid as well.
  • Loading branch information
Vladinator committed Nov 5, 2022
1 parent 5e75c38 commit 1958222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1288,8 +1288,8 @@ do
if frame == _G.RaiderIO_ProfileTooltipAnchor then return end
-- LFGListSearchEntry_OnEnter > LFGListUtil_SetSearchEntryTooltip > C_LFGList.GetPlaystyleString
if onEnter == _G.LFGListSearchEntry_OnEnter or (frame.resultID and IsParentedBy(frame, _G.LFGListFrame.SearchPanel.ScrollBox)) then return false end
-- QuickJoinButtonMixin.OnEnter > .entry.ApplyToTooltip(GameTooltip) > LFGListUtil_SetSearchEntryTooltip > C_LFGList.GetPlaystyleString
if onEnter == _G.QuickJoinButtonMixin.OnEnter or (frame.entry and IsParentedBy(frame, _G.QuickJoinFrame.ScrollBox)) then return false end
-- QuickJoinButtonMixin.OnEnter > .entry.ApplyToTooltip(GameTooltip) > SocialQueueUtil_SetTooltip > LFGListUtil_SetSearchEntryTooltip > C_LFGList.GetPlaystyleString
if onEnter == _G.QuickJoinButtonMixin.OnEnter or onEnter == _G.SocialQueueUtil_SetTooltip or (frame.entry and IsParentedBy(frame, _G.QuickJoinFrame.ScrollBox)) then return false end
-- anything else is assumed safe (otherwise if not, then we need to expand/adjust the above checklist)
return true
end
Expand Down

0 comments on commit 1958222

Please sign in to comment.