Skip to content

Commit 13eb700

Browse files
committed
little tweaks 🐣
1 parent 307ad6b commit 13eb700

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

ElvUI_Libraries/Core/LibAnim/LibAnim.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- LibAnim by Hydra
2-
local Version = 2.902 -- based on 2.03
2+
local Version = 2.903 -- based on 2.03
33

44
-- Note, deprecated items will be removed next version.
55
-- Please update your usage accordingly. (ctrl + f - "Deprecated")

ElvUI_Libraries/Core/oUF/ouf.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local Private = Profiler(oUF).Private
99

1010
local argcheck = Private.argcheck
1111
local error = Private.error
12-
local print = Private.print --luacheck: no unused
12+
local print = Private.print -- luacheck: no unused
1313
local unitExists = Private.unitExists
1414

1515
local styles, style = {}

ElvUI_Libraries/Core/oUF/simpy/profiler.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ local Private = oUF.Private
55
-- ElvUI_CPU knock off by Simpy (STILL UNFINISHED)
66

77
local type = type
8+
local next = next
89
local wipe = wipe
910
local rawset = rawset
1011
local unpack = unpack

ElvUI_Options/Core/General.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ local FCF_GetNumActiveChatFrames = FCF_GetNumActiveChatFrames
1818
local ChatTabInfo = {}
1919
local function GetChatWindowInfo()
2020
wipe(ChatTabInfo)
21-
for i = 1, FCF_GetNumActiveChatFrames() do
21+
22+
local numActive = FCF_GetNumActiveChatFrames() or 0
23+
for i = 1, numActive do
2224
ChatTabInfo['ChatFrame'..i] = _G['ChatFrame'..i..'Tab']:GetText()
2325
end
26+
2427
return ChatTabInfo
2528
end
2629

0 commit comments

Comments
 (0)