Skip to content

Commit

Permalink
remove extra action bar from classic release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuller committed Aug 31, 2019
1 parent 5fb50e5 commit 46183be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Dominos/Dominos.toc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ bars\petBar.lua
bars\stanceBar.lua
bars\bagBar.lua
bars\menuBar.lua
#@retail@
bars\extraActionBar.lua
#@end-retail@
bars\vehicleBar.lua
plugins\multiActionBarFixer.lua
plugins\slashCommands.lua
Expand Down
10 changes: 3 additions & 7 deletions Dominos/bars/extraActionBar.lua
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
if not _G['ExtraActionBarFrame'] then return end
if not ExtraActionBarFrame then return end

--[[ Globals ]]--

local AddonName, Addon = ...
local _, Addon = ...
local KeyBound = LibStub('LibKeyBound-1.0')
local Tooltips = Addon:GetModule('Tooltips')
local Bindings = Addon.BindingsController


--[[ buttons ]]--

local ExtraActionButton = Addon:CreateClass('CheckButton', Addon.BindableButton)
Expand Down Expand Up @@ -64,7 +61,6 @@ do
end
end


--[[ bar ]]--

local ExtraBar = Addon:CreateClass('Frame', Addon.ButtonBar)
Expand Down Expand Up @@ -152,7 +148,7 @@ end
local ExtraBarController = Addon:NewModule('ExtraBar')

function ExtraBarController:OnInitialize()
_G['ExtraActionBarFrame'].ignoreFramePositionManager = true
ExtraActionBarFrame.ignoreFramePositionManager = true
end

function ExtraBarController:Load()
Expand Down

0 comments on commit 46183be

Please sign in to comment.