View Single Post
04-09-09, 08:09 AM   #2
haste
Featured Artist
 
haste's Avatar
Premium Member
Featured
Join Date: Dec 2005
Posts: 1,027
The easiest way is to just iterate over the aura frame with ipairs(). For example:
Code:
local icons = oUF.units.player.Auras

-- Set the new height:
icons.size = 23

for k, icon in ipairs(icons) do
    icon:SetHeight(icons.size)
    icon:SetWidth(icons.size)
end
  Reply With Quote