public
Description: WoW Addon - Handles all your mount & travel-form needs
Homepage: http://www.tekkub.net/
Clone URL: git://github.com/tekkub/mountme.git
Click here to lend your support to: mountme and make a donation at www.pledgie.com !
Update for wrath build 8962 config panel breakage
tekkub (author)
Fri Sep 19 21:12:40 -0700 2008
commit  03c11d3f8c410736b203e044d2eeff1a36794906
tree    802aee1d5bca086a6d3f6a68a9bfb1dc5018355e
parent  fdf6c9894c42e6549c13e9c1d608ae9b496c97e2
...
1
 
 
 
2
3
4
...
7
8
9
10
 
11
12
13
...
63
64
65
66
 
67
...
 
1
2
3
4
5
6
...
9
10
11
 
12
13
14
15
...
65
66
67
 
68
69
0
@@ -1,4 +1,6 @@
0
-
0
+if IS_WRATH_BUILD == nil then IS_WRATH_BUILD = (select(4, GetBuildInfo()) >= 30000) end
0
+if not IS_WRATH_BUILD then InterfaceOptionsFrame_OpenToCategory = InterfaceOptionsFrame_OpenToFrame end
0
+
0
 local MountMe = MountMe
0
 if not MountMe then return end
0
 
0
@@ -7,7 +9,7 @@ local GAP = 8
0
 local tekcheck = LibStub("tekKonfig-Checkbox")
0
 
0
 
0
-local frame = CreateFrame("Frame", nil, UIParent)
0
+local frame = CreateFrame("Frame", nil, InterfaceOptionsFramePanelContainer)
0
 frame.name = "MountMe"
0
 frame:Hide()
0
 frame:SetScript("OnShow", function()
0
@@ -63,5 +65,5 @@ LibStub("tekKonfig-AboutPanel").new("MountMe", "MountMe")
0
 LibStub:GetLibrary("LibDataBroker-1.1"):NewDataObject("MountMe", {
0
   type = "launcher",
0
   icon = "Interface\\Icons\\Ability_Mount_WhiteTiger",
0
- OnClick = function() InterfaceOptionsFrame_OpenToFrame(frame) end,
0
+ OnClick = function() InterfaceOptionsFrame_OpenToCategory(frame) end,
0
 })

Comments

    No one has commented yet.