Skip to content

Commit c7c5e52

Browse files
committed
add skyriding support
1 parent 8725099 commit c7c5e52

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

gui.lua

+16-3
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,19 @@ local function CreateSettingMenu(opt)
231231
})
232232
end
233233

234+
-- 10.0
235+
if select(4, GetBuildInfo()) > 100000 then
236+
table.insert(actionbarlist, {
237+
text = L["Skyriding Bar"],
238+
isNotRadio = true,
239+
keepShownOnClick = true,
240+
arg1 = "action",
241+
arg2 = 11,
242+
checked = childchecked,
243+
func = childclicked,
244+
})
245+
end
246+
234247
for i = 1, 4 do
235248

236249
-- local _, _, _, spell = GetShapeshiftFormInfo(i)
@@ -405,7 +418,7 @@ do
405418
local settings = {
406419
{
407420
isTitle = true,
408-
text = L["Ignore during Import"],
421+
text = "|cffff0000" .. L["IGNORE"] .. "|r" .. L[" during Import"],
409422
notCheckable = true,
410423
}
411424
}
@@ -415,7 +428,7 @@ do
415428
tAppendAll(settings, {
416429
{
417430
isTitle = true,
418-
text = L["Clear before Import"],
431+
text = "|cffff0000" .. L["CLEAR"] .. "|r" .. L[" before Import"],
419432
notCheckable = true,
420433
}
421434
})
@@ -480,7 +493,7 @@ do
480493
local settings = {
481494
{
482495
isTitle = true,
483-
text = L["Ignore during Export"],
496+
text = "|cffff0000" .. L["IGNORE"] .. "|r" .. L[" during Export"],
484497
notCheckable = true,
485498
}
486499
}

0 commit comments

Comments
 (0)