View Single Post
10-16-20, 06:19 PM   #2
DahkCeles
A Cliff Giant
 
DahkCeles's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2020
Posts: 73
I would try inserting the following at line 12:


Lua Code:
  1. local function initCommon(frame) -- old line 11
  2.     if (BackdropTemplateMixin) then
  3.         Mixin(frame, BackdropTemplateMixin)
  4.     end
  5.     frame:SetBackdrop(backdrop) -- old line 12

After quickly scanning the code, my assumption is that every frame with a backdrop has this initCommon function called once only before any backdrop functions are used.
  Reply With Quote