Skip to content

Commit

Permalink
Add GetInspectSpecialization
Browse files Browse the repository at this point in the history
Remove SetBindingClick
Increase Version
  • Loading branch information
Rottenbeer committed Sep 7, 2019
1 parent 0ce56ca commit baae496
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions ItemRack/ItemRack.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ItemRack = {}
local disable_delayed_swaps = nil -- temporary. change nil to 1 to stop attempting to delay set swaps while casting
local _

ItemRack.Version = "3.08"
ItemRack.Version = "3.09"

ItemRackUser = {
Sets = {}, -- user's sets
Expand Down Expand Up @@ -1832,10 +1832,10 @@ function ItemRack.SetSetBindings()
button = _G[buttonName] or CreateFrame("Button",buttonName,nil,"SecureActionButtonTemplate")
button:SetAttribute("type","macro")
button:SetAttribute("macrotext","/script ItemRack.RunSetBinding(\""..i.."\")")
SetBindingClick(ItemRackUser.Sets[i].key,buttonName)
-- SetBindingClick(ItemRackUser.Sets[i].key,buttonName)
end
end
--SaveBindings(GetCurrentBindingSet())
-- SaveBindings(GetCurrentBindingSet())
end

function ItemRack.RunSetBinding(setname)
Expand Down Expand Up @@ -1999,3 +1999,9 @@ function ItemRack.ProfileFuncs()
table.insert(TinyPadPages,info)
end
end

function GetInspectSpecialization()

return 0;

end

0 comments on commit baae496

Please sign in to comment.