Skip to content

Commit

Permalink
Merge branch 'main' into ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Jan 18, 2025
2 parents d080586 + 13eb700 commit 0401d44
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ElvUI_Libraries/Core/LibAnim/LibAnim.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- LibAnim by Hydra
local Version = 2.902 -- based on 2.03
local Version = 2.903 -- based on 2.03

-- Note, deprecated items will be removed next version.
-- Please update your usage accordingly. (ctrl + f - "Deprecated")
Expand Down
2 changes: 1 addition & 1 deletion ElvUI_Libraries/Core/oUF/ouf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ local Private = Profiler(oUF).Private

local argcheck = Private.argcheck
local error = Private.error
local print = Private.print --luacheck: no unused
local print = Private.print -- luacheck: no unused
local unitExists = Private.unitExists

local styles, style = {}
Expand Down
1 change: 1 addition & 0 deletions ElvUI_Libraries/Core/oUF/simpy/profiler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ local Private = oUF.Private
-- ElvUI_CPU knock off by Simpy (STILL UNFINISHED)

local type = type
local next = next
local wipe = wipe
local rawset = rawset
local unpack = unpack
Expand Down
5 changes: 4 additions & 1 deletion ElvUI_Options/Core/General.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ local FCF_GetNumActiveChatFrames = FCF_GetNumActiveChatFrames
local ChatTabInfo = {}
local function GetChatWindowInfo()
wipe(ChatTabInfo)
for i = 1, FCF_GetNumActiveChatFrames() do

local numActive = FCF_GetNumActiveChatFrames() or 0
for i = 1, numActive do
ChatTabInfo['ChatFrame'..i] = _G['ChatFrame'..i..'Tab']:GetText()
end

return ChatTabInfo
end

Expand Down

0 comments on commit 0401d44

Please sign in to comment.