View Single Post
04-28-10, 07:03 PM   #5
acapela
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 241
this code resulted in a #132 crash:
Code:
backdropFrame:SetBackdrop( { insets = { left = inset, right = inset, top = inset, bottom = inset, }, edgeFile = edgeFile, edgeSize = 16, bgFile = texture, } )
i am now testing this code (i.e. same code, just with no edgeSize):
Code:
backdropFrame:SetBackdrop( { insets = { left = inset, right = inset, top = inset, bottom = inset, }, edgeFile = edgeFile, bgFile = texture, } )
this will take a while. given that the crashes are intermittent, proving the negative (by not crashing) can take hours/days.

Originally Posted by Seerah View Post
What happens if you use :SetBackdrop() "normally"? (ie, you put the table right in the function instead of passing a variable - same with the file paths)
i.e. create the table anonymously inline, per the example for Frame:SetBackdrop() on WoWWiki?

i will try that, and update when i have some findings.
__________________
Retired author/maintainer of Aloft (the nameplate addon)
http://www.wowinterface.com/download...AloftBeta.html
-----
Zippy said it best: "All life is a BLUR of Republicans and Meat!"

Last edited by acapela : 04-28-10 at 07:31 PM.
  Reply With Quote