Quantcast

updated the new datatexts with hide in combat option

Repooc [03-18-13 - 21:19]
updated the new datatexts with hide in combat option
Filename
ElvUI_SLE/locales/english.lua
ElvUI_SLE/modules/datatexts/options.lua
diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua
index 1354f02..d7bc5a7 100755
--- a/ElvUI_SLE/locales/english.lua
+++ b/ElvUI_SLE/locales/english.lua
@@ -135,6 +135,8 @@ L["Hide MOTD"] = true
 L["Hide the guild's Message of the Day in the tooltip."] = true
 L["Hide Guild Name"] = true
 L["Hide the guild's name in the tooltip."] = true
+L["Hide In Combat"] = true
+L["Will not show the tooltip while in combat."] = true

 --Exp/Rep Bar--
 L["Xp-Rep Text"] = true
diff --git a/ElvUI_SLE/modules/datatexts/options.lua b/ElvUI_SLE/modules/datatexts/options.lua
index c74af3d..0d48060 100755
--- a/ElvUI_SLE/modules/datatexts/options.lua
+++ b/ElvUI_SLE/modules/datatexts/options.lua
@@ -184,6 +184,14 @@ E.Options.args.sle.args.sldatatext = {
 					type = "description",
 					name = L["These options are for modifing the Shadow & Light Friends datatext."],
 				},
+				combat = {
+					order = 2,
+					type = "toggle",
+					name = L["Hide In Combat"],
+					desc = L["Will not show the tooltip while in combat."],
+					get = function(info) return E.db.sle.dt.friends.combat end,
+					set = function(info, value) E.db.sle.dt.friends.combat = value; end,
+				},
 				hidetotals = {
 					order = 2,
 					type = "toggle",
@@ -234,16 +242,24 @@ E.Options.args.sle.args.sldatatext = {
 					type = "description",
 					name = L["These options are for modifing the Shadow & Light Guild datatext."],
 				},
-				hidetotals = {
+				combat = {
 					order = 2,
 					type = "toggle",
+					name = L["Hide In Combat"],
+					desc = L["Will not show the tooltip while in combat."],
+					get = function(info) return E.db.sle.dt.guild.combat end,
+					set = function(info, value) E.db.sle.dt.guild.combat = value; end,
+				},
+				hidetotals = {
+					order = 3,
+					type = "toggle",
 					name = L["Show Totals"],
 					desc = L["Show total guild members in the datatext."],
 					get = function(info) return E.db.sle.dt.guild.totals end,
 					set = function(info, value) E.db.sle.dt.guild.totals = value; DT:update_Guild() end,
 				},
 				hidehintline = {
-					order = 3,
+					order = 4,
 					type = "toggle",
 					name = L["Hide Hints"],
 					desc = L["Display the hints in the tooltip."],
@@ -251,7 +267,7 @@ E.Options.args.sle.args.sldatatext = {
 					set = function(info, value) E.db.sle.dt.guild.hide_hintline = value; end,
 				},
 				hidemotd = {
-					order = 4,
+					order = 5,
 					type = "toggle",
 					name = L["Hide MOTD"],
 					desc = L["Hide the guild's Message of the Day in the tooltip."],
@@ -259,7 +275,7 @@ E.Options.args.sle.args.sldatatext = {
 					set = function(info, value) E.db.sle.dt.guild.hide_gmotd = value; end,
 				},
 				hideguildname = {
-					order = 4,
+					order = 6,
 					type = "toggle",
 					name = L["Hide Guild Name"],
 					desc = L["Hide the guild's name in the tooltip."],
@@ -267,12 +283,12 @@ E.Options.args.sle.args.sldatatext = {
 					set = function(info, value) E.db.sle.dt.guild.hide_guildname = value; end,
 				},
 				spacer = {
-					order = 5,
+					order = 7,
 					type = 'description',
 					name = "",
 				},
 				tooltipautohide = {
-					order = 6,
+					order = 8,
 					type = "range",
 					name = L["Autohide Delay:"],
 					desc = L["Adjust the tooltip autohide delay when mouse is no longer hovering of the datatext."],