Is there any way to increase the size of buffs/debuffs on the current target with this new UI?
Heya, there might be a better way but after some snooping around I’ve found this to work
hooksecurefunc("TargetFrame_UpdateBuffAnchor", function(_, buff)
buff:SetSize(21, 21)
end)
hooksecurefunc("TargetFrame_UpdateDebuffAnchor", function(_, debuff)
debuff:SetSize(21, 21)
end)
thank you so much for this! Is there any command that would reduce the padding/spacing after increasing the buffs to that size of 21? I’ve tried buff:SetPadding to no avail, thank you.