Account for changes in chat.lua of ElvUI
Darth Predator [06-11-17 - 10:05]
Account for changes in chat.lua of ElvUI
diff --git a/ElvUI_SLE/core/install.lua b/ElvUI_SLE/core/install.lua
index bb742af..1fbfb85 100644
--- a/ElvUI_SLE/core/install.lua
+++ b/ElvUI_SLE/core/install.lua
@@ -482,7 +482,6 @@ function PI:DarthSetup()
E.db["sle"]["raidmarkers"]["buttonSize"] = 24
E.db["sle"]["nameplates"]["showthreat"] = true
E.db["sle"]["nameplates"]["targetcount"] = true
- E.db["sle"]["chat"]["editboxhistory"] = 10
E.db["sle"]["chat"]["dpsSpam"] = true
E.db["sle"]["chat"]["tab"]["select"] = true
E.db["sle"]["datatexts"]["leftchat"]["width"] = 430
diff --git a/ElvUI_SLE/defaults/profile.lua b/ElvUI_SLE/defaults/profile.lua
index c23a16d..da02f68 100644
--- a/ElvUI_SLE/defaults/profile.lua
+++ b/ElvUI_SLE/defaults/profile.lua
@@ -105,7 +105,7 @@ P["sle"] = {
["alpha"] = 0.5,
},
["combathide"] = "NONE",
- ["editboxhistory"] = 5,
+ ["editboxhistory"] = 20,
["justify"] = {
["frame1"] = "LEFT",
["frame2"] = "LEFT",
diff --git a/ElvUI_SLE/options/chat/chat_c.lua b/ElvUI_SLE/options/chat/chat_c.lua
index 8e50c5f..2bbf593 100644
--- a/ElvUI_SLE/options/chat/chat_c.lua
+++ b/ElvUI_SLE/options/chat/chat_c.lua
@@ -44,7 +44,7 @@ local function configTable()
order = 6, type = "range",
name = L["Chat Editbox History"],
desc = L["The amount of messages to save in the editbox history.\n\n|cffFF0000Note:|r To disable, set to 0."],
- min = 5, max = 20, step = 1,
+ min = 5, max = 50, step = 1,
get = function(info) return E.db.sle.chat.editboxhistory end,
set = function(info, value) E.db.sle.chat.editboxhistory = value; end,
},