oUF

97.2k Downloads

Auras count hidden when cooldown enabled

gempir opened this issue ยท 2 comments

commented

When cooldown enabled on auras the count on the buff is hidden behind the cooldown.
https://i.imgur.com/ikF4VAj.png

If you look at the last buff (Bone Shield) you can see the count a tiny bit behind the 25.

commented

That would be the default cooldown text shown on every cooldown frame, by default.
oUF doesn't handle this at all, it's up to the layout.

If you want to disable this, add the following to your aura frame's PostCreate callback:

button.cd:SetHideCountdownNumbers(true)

Example from my own layout:
https://github.com/p3lim-wow/oUF_P3lim/blob/master/oUF_P3lim.lua#L181

commented

Well, that's not oUF issue.

It's up to you how to organise your frames. If you want to show stacks in front of CD timer, you'll need to create an overlay frame and use it as your count font string's parent.

Aura frame (icon and stuff go here) > CD frame > overlay frame (stack counter goes here)