public
Description: WoW Addon - Food/water macro generator
Homepage: http://www.tekkub.net
Clone URL: git://github.com/tekkub/buffet.git
Click here to lend your support to: buffet and make a donation at www.pledgie.com !
Update for wrath build 8962 config panel breakage
tekkub (author)
Fri Sep 19 21:23:25 -0700 2008
commit  8fadbda0abebcb1d57f9d54a889d28db7ada8983
tree    58075c226d8e3c01f828aebf503001509a963426
parent  8b7468b96a468fd687987a832843e19afe431504
...
 
1
2
3
...
5
6
7
8
 
9
10
11
...
123
124
125
126
 
127
...
1
2
3
4
...
6
7
8
 
9
10
11
12
...
124
125
126
 
127
128
0
@@ -1,3 +1,4 @@
0
+if not IS_WRATH_BUILD then InterfaceOptionsFrame_OpenToCategory = InterfaceOptionsFrame_OpenToFrame end
0
 
0
 local MAX_ACCOUNT_MACROS, MAX_CHARACTER_MACROS = IS_WRATH_BUILD and 36 or 18, 18
0
 
0
@@ -5,7 +6,7 @@ local EDGEGAP, GAP = 16, 8
0
 local tekbutt = LibStub("tekKonfig-Button")
0
 
0
 
0
-local frame = CreateFrame("Frame", nil, UIParent)
0
+local frame = CreateFrame("Frame", nil, InterfaceOptionsFramePanelContainer)
0
 frame.name = "Buffet"
0
 frame:Hide()
0
 frame:SetScript("OnShow", function()
0
@@ -123,5 +124,5 @@ LibStub("tekKonfig-AboutPanel").new("Buffet", "Buffet")
0
 LibStub:GetLibrary("LibDataBroker-1.1"):NewDataObject("Buffet", {
0
   type = "launcher",
0
   icon = "Interface\\Icons\\INV_Misc_Food_DimSum",
0
- OnClick = function() InterfaceOptionsFrame_OpenToFrame(frame) end,
0
+ OnClick = function() InterfaceOptionsFrame_OpenToCategory(frame) end,
0
 })

Comments

    No one has commented yet.