View Single Post
10-16-20, 11:32 PM   #3
Stea
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Sep 2020
Posts: 8
Thanks, that did the trick. I added a search for the category I put my addon in, and I guess that's close enough:

Lua Code:
  1. if (not KeyBindingFrame) then
  2.    KeyBindingFrame_LoadUI()
  3. end
  4. if not InCombatLockdown() then
  5.   KeyBindingFrame:Show()
  6.   for _,v in pairs(KeyBindingFrame.categoryList.buttons) do
  7.     if v:GetText() == "AddOns" or v:GetText() == "ADDONS" then
  8.       v:Click()
  9.     end
  10.   end
  11. end

Last edited by Stea : 10-16-20 at 11:38 PM.
  Reply With Quote