76 - Buggy labels for Blizzard addons
When scrolling the ACP frame quickly to the bottom, the Blizzard addons retain the status text (Disabled, Loadable OnDemand, etc) of whatever addons were previously displayed. I was able to fix this by changing this code on line 1818:
if addonIdx <= origNumAddons then status:SetText(CLR:Colorize(self:GetAddonStatus(addonIdx))) end
to this:
if addonIdx <= origNumAddons then status:SetText(CLR:Colorize(self:GetAddonStatus(addonIdx))) else status:SetText(CLR:Colorize(self:GetAddonStatus(ACP_BLIZZARD_ADDONS[(addonIdx - origNumAddons)]))) end
| User | When | Change |
|---|---|---|
| Cybeloras | Aug 29, 2011 at 10:31 UTC | Create |