You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
463 B
24 lines
463 B
local SLE, T, E, L, V, P, G = unpack(ElvUI_SLE)
|
|
|
|
local function configTable()
|
|
if not SLE.initialized then return end
|
|
|
|
--Datatext panels
|
|
E.Options.args.sle.args.modules.args.datatext = {
|
|
order = 1,
|
|
type = "group",
|
|
name = L["DataTexts"],
|
|
childGroups = "tab",
|
|
args = {
|
|
sldatatext = {
|
|
type = "group",
|
|
name = L["S&L Datatexts"],
|
|
order = 1,
|
|
args = {
|
|
},
|
|
},
|
|
},
|
|
}
|
|
end
|
|
|
|
tinsert(SLE.Configs, configTable)
|
|
|