DBM Font Size added in ElvUI Skins
Repooc [08-01-13 - 23:42]
DBM Font Size added in ElvUI Skins
diff --git a/ElvUI_SLE/skins/load_skins.xml b/ElvUI_SLE/skins/load_skins.xml
index 7c1c55e..204923a 100755
--- a/ElvUI_SLE/skins/load_skins.xml
+++ b/ElvUI_SLE/skins/load_skins.xml
@@ -1,5 +1,4 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/">
<Include file='addons\load_addons.xml'/>
<Include file='blizzard\load_blizzard.xml'/>
- <Script file='options.lua'/>
</Ui>
\ No newline at end of file
diff --git a/ElvUI_SLE/skins/options.lua b/ElvUI_SLE/skins/options.lua
deleted file mode 100755
index 84fef6b..0000000
--- a/ElvUI_SLE/skins/options.lua
+++ /dev/null
@@ -1,36 +0,0 @@
-local E, L, V, P, G, _ = unpack(ElvUI); --Inport: Engine, Locales, PrivateDB, ProfileDB, GlobalDB, Localize Underscore
-local function configTable()
-E.Options.args.sle.args.skins = {
- order = 8,
- type = "group",
- name = L["Skins"],
- guiInline = true,
- args = {
- info = {
- order = 1,
- type = "description",
- name = L["This options require ElvUI AddOnSkins pack to work."],
- },
- dbm = {
- order = 2,
- type = "group",
- name = "DBM",
- guiInline = true,
- args = {
- fontsize = {
- order = 1,
- disabled = function() return not IsAddOnLoaded('DBM-Core') end,
- type = "range",
- name = L['Font Size'],
- desc = L["Sets font size on DBM bars"],
- min = 8, max = 14, step = 1,
- get = function(info) return E.private.sle.dbm.size end,
- set = function(info, value) E.private.sle.dbm.size = value; E:StaticPopup_Show("PRIVATE_RL") end,
- },
- },
- },
- },
-}
-end
-
-table.insert(E.SLEConfigs, configTable)
\ No newline at end of file