Skip to content

Commit

Permalink
10.2.6.1 - [retail] Remove LFGListUtil_SetSearchEntryTooltip debug pr…
Browse files Browse the repository at this point in the history
…int spam
  • Loading branch information
arnvid committed Apr 20, 2024
1 parent 12d0e2e commit d59bd4d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Aurora.toc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## IconAtlas: callings-backhighlight-full
## Notes: Minimalistic window theme.
## Author: Haleth/Lightsword, Gethe, Hanshi/arnvid
## Version: 10.2.6.0
## Version: 10.2.6.1
## LoadWith: Blizzard_CompactRaidFrames
## OptionalDeps: Ace3, LibTextDump-1.0, BugSack, WagoAnalytics
## SavedVariables: AuroraConfig
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## [10.2.6.0] ##
## [10.2.6.1] ##
### Fixed ###

* [retail] Remove LFGListUtil_SetSearchEntryTooltip debug print spam

## [10.2.6.0] ##
### Fixed ###

* [retail] LFGListUtil_SetSearchEntryTooltip updates
Expand Down
3 changes: 1 addition & 2 deletions Skin/Interface/FrameXML/LFGList.lua
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,11 @@ do --[[ FrameXML\LFGList.lua ]]
end
end
function Hook.LFGListUtil_SetSearchEntryTooltip(tooltip, resultID)
_G.print("LFGListUtil_SetSearchEntryTooltip loaded.")
local searchResultInfo = _G.C_LFGList.GetSearchResultInfo(resultID)
local activityInfo = _G.C_LFGList.GetActivityInfoTable(searchResultInfo.activityID)
if activityInfo.displayType ~= _G.Enum.LFGListDisplayType.ClassEnumerate then return end
if searchResultInfo.isDelisted or not tooltip:IsShown() then

Check warning on line 134 in Skin/Interface/FrameXML/LFGList.lua

View workflow job for this annotation

GitHub Actions / tag

line contains trailing whitespace
_G.print("LFGListUtil_SetSearchEntryTooltip is isDelisted or not shown.")
-- _G.print("LFGListUtil_SetSearchEntryTooltip is isDelisted or not shown.")
return
end
local name = tooltip:GetName() .. "TextLeft"
Expand Down

0 comments on commit d59bd4d

Please sign in to comment.