Thread: strange error
View Single Post
08-23-19, 02:56 AM   #3
gmarco
An Onyxian Warder
 
gmarco's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 362
Hi Rilgamon.

I have correct the iussues you pointed out in this way:

Lua Code:
  1. local ADDON = ...
  2.  
  3. -- [ ... ]
  4.  
  5. local options = CreateFrame("Frame", ADDON .. "options", InterfaceOptionsFramePanelContainer)
  6.  
  7. -- [ ... ]
  8.  
  9. local button1 = CreateFrame("button", ADDON .. "button1", options, "UIPanelButtonTemplate")
  10.  
  11. -- [ ... ]

It should be ok now even if I don't think they can solve the iussue in the first post.
Btw thanks so much for your reply. It is really appreciated.
__________________
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
  Reply With Quote