View Single Post
10-14-20, 05:55 PM   #5
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,240
The fix for ChocolateBar is very simple:
Lua Code:
  1. -- Open up ChocolateBar\Bar.lua, go to line 30.  It should be the following:
  2.  
  3. local frame = CreateFrame("Frame",name,UIParent)
  4.  
  5. -- The correct fix is:
  6.  
  7. local frame = CreateFrame("Frame",name,UIParent, BackdropTemplateMixin and "BackdropTemplate")
  Reply With Quote