Skip to content

Commit

Permalink
Fix: 'attempt to index local 'tabHigh' (a nil value)'
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl-HeinzSchneider committed Dec 16, 2024
1 parent 938ff00 commit c967c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mixin/UI.mixin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3715,7 +3715,7 @@ function DragonflightUIMixin:PortraitFrameTemplate(frame)

if i == 5 then
local tabHigh = _G[name .. 'Tab' .. i .. 'HighlightTexture']
tabHigh:Hide()
if tabHigh then tabHigh:Hide() end
end
end
end
Expand Down

0 comments on commit c967c5d

Please sign in to comment.