Skip to content

Commit

Permalink
Fixed skin error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shestak committed Aug 18, 2015
1 parent 7615daf commit 26add5b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ShestakUI/Modules/Skins/Blizzard/Others.lua
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,10 @@ SkinBlizzUI:SetScript("OnEvent", function(self, event, addon)
}

for _, scrollbar in pairs(scrollbars) do
T.SkinScrollBar(_G[scrollbar])
local bars = _G[_G[scrollbar]]
if bars then
T.SkinScrollBar(bars)
end
end

-- Button position or text
Expand Down

0 comments on commit 26add5b

Please sign in to comment.