Countdown without buff icon
finnsnape opened this issue ยท 2 comments
- Restart game
- Login
- Don't target anyone or anything, and immediately cast a spell which should put a buff on yourself (e.g., Evasion)
- Portrait shows cooldown timer but no spell icon
I was able to fix this issue by changing the following line
Line 908 in f8cfd62
to
frame:SetFrameLevel(parent:GetFrameLevel() + 1)
I don't really know enough about WoW widgets to comment as to why this resolves it. My best guess is that the portrait frame and the icon frame are having the same frame level within a shared parent, which means that the last one set will take priority. Maybe the player frame updates changed which events caused the frame level to be set.
issue #429 is also related