Skip to content

Commit

Permalink
add skyriding support
Browse files Browse the repository at this point in the history
  • Loading branch information
tg123 committed Aug 21, 2024
1 parent 8725099 commit c7c5e52
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions gui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,19 @@ local function CreateSettingMenu(opt)
})
end

-- 10.0
if select(4, GetBuildInfo()) > 100000 then
table.insert(actionbarlist, {
text = L["Skyriding Bar"],
isNotRadio = true,
keepShownOnClick = true,
arg1 = "action",
arg2 = 11,
checked = childchecked,
func = childclicked,
})
end

for i = 1, 4 do

-- local _, _, _, spell = GetShapeshiftFormInfo(i)
Expand Down Expand Up @@ -405,7 +418,7 @@ do
local settings = {
{
isTitle = true,
text = L["Ignore during Import"],
text = "|cffff0000" .. L["IGNORE"] .. "|r" .. L[" during Import"],
notCheckable = true,
}
}
Expand All @@ -415,7 +428,7 @@ do
tAppendAll(settings, {
{
isTitle = true,
text = L["Clear before Import"],
text = "|cffff0000" .. L["CLEAR"] .. "|r" .. L[" before Import"],
notCheckable = true,
}
})
Expand Down Expand Up @@ -480,7 +493,7 @@ do
local settings = {
{
isTitle = true,
text = L["Ignore during Export"],
text = "|cffff0000" .. L["IGNORE"] .. "|r" .. L[" during Export"],
notCheckable = true,
}
}
Expand Down

0 comments on commit c7c5e52

Please sign in to comment.