Not Scaling to Larger Button Sizes
ArtnerC opened this issue ยท 5 comments
Just want to say I love this addon and have used it for forever as InlineAuras, it is immensely underrated and thank you for keeping it up.
So I'm trying to use it along with larger buttons, moved towards the middle of the screen, as a type of replacement for what many use WeakAuras for. The problem I'm having is the overlays don't seem to scale with button size. Leaving me with some odd looking buttons... I'm using ElvUI action bars, if it matters. Let me know if you need any more info.
For anyone interested, I "fixed" this editing this line: https://github.com/AdiAddons/AdiButtonAuras/blob/master/core/Overlays.lua#L202 with:
self:SetSize(50, 50)
(50 or the size of your buttons)
I don't know why button:GetSize()
gets the wrong button size.
It's a bad solution, but for now this works for me.
Probably the reason is that the button skin of ElvUI is bigger than the buttons themselves. Your "fix" would be overwritten the next time you update, so you'll have to re-apply it.
I might take a look at it and see if I could easily add support for ElvUI. Don't hold your breath though :)
Your "fix" would be overwritten the next time you update, so you'll have to re-apply it.
Yes, I know, in some way my comment was to remember to myself what to change in the future :P
Thank you for take a look into it! much appreciated!