View Single Post
01-16-14, 05:04 AM   #2
Resike
A Pyroguard Emberseer
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,290
Havn't tested just checked the code, so i might be wrong but this function:

Lua Code:
  1. function Backdrop:BorderTextureFunction(func,...)
  2.     -- check to see the function exists for a texture object
  3.     if not self._backdrop.bgTexture[func] then return end
  4.     for point, texture in pairs(frame._backdrop.edgeTextures) do
  5.         texture[func](texture,...)
  6.     end
  7. end

Shouldn't have "self._backdrop.edgeTextures" instead of "frame._backdrop.edgeTextures"?
  Reply With Quote