api: option to hide textures in striptextures

This commit is contained in:
shagu
2018-07-07 04:11:25 +02:00
parent e7d2fc7a41
commit 5b78a4cb63
+7 -2
View File
@@ -489,9 +489,14 @@ end
-- [ StripTextures ]
-- Strips all textures off a frame.
-- 'frame' [frame] the frame that should be stripped.
function pfUI.api.StripTextures(frame)
function pfUI.api.StripTextures(frame, hide)
for i,v in ipairs({frame:GetRegions()}) do
if v.SetTexture then v:SetTexture(nil) end
if v.SetTexture then
v:SetTexture(nil)
if hide then
v:Hide()
end
end
end
end