tukz's Avatar
Files 3
Downloads 5,381
Favorites 10
View Bug Report
Not shown on login
Bug #: 7870
File: oUF Warlock Specs Bars
Date: 11-19-12 10:49 AM
By: profalbert
Status: Unconfirmed
Because the update-function is missing the visibility-check present in other functions.

Lua Code:
  1. @@ -30,6 +30,10 @@ local Update = function(self, event, unit, powerType)
  2.         local spec = GetSpecialization()
  3.  
  4.         if spec then
  5. +               if not wsb:IsShown() then
  6. +                       wsb:Show()
  7. +               end
  8. +
  9.                 if (spec == SPEC_WARLOCK_DESTRUCTION) then
  10.                         local maxPower = UnitPowerMax("player", SPELL_POWER_BURNING_EMBERS, true)
  11.                         local power = UnitPower("player", SPELL_POWER_BURNING_EMBERS, true)

RSS 2.0 Feed for Bug CommentsNotes Sort Options
By: Aerials - 05-27-13 12:31 PM
Easy to fix, see my comment in the addon comment section.