Quantcast

Rename M to MISC, getting back to "all" group

Darthpred [02-13-13 - 08:57]
Rename M to MISC, getting back to "all" group

We can go ask Azil to test and say wtf he thinks bout this hiding from
"all" stuff
Filename
ElvUI_SLE/ElvUI_SLE.lua
ElvUI_SLE/modules/backgrounds/backgrounds.lua
ElvUI_SLE/modules/datatexts/add_panels.lua
ElvUI_SLE/modules/datatexts/dashboard/dashboard.lua
ElvUI_SLE/modules/marks/marks.lua
ElvUI_SLE/modules/pvpmover/pvpmover.lua
ElvUI_SLE/modules/raidutility/raidutility.lua
ElvUI_SLE/modules/uibuttons/uibuttons.lua
diff --git a/ElvUI_SLE/ElvUI_SLE.lua b/ElvUI_SLE/ElvUI_SLE.lua
index 7f0be38..53164d9 100644
--- a/ElvUI_SLE/ElvUI_SLE.lua
+++ b/ElvUI_SLE/ElvUI_SLE.lua
@@ -16,8 +16,8 @@ function SLE:ConfigCats() --Additional mover groups
 	E.ConfigModeLocalizedStrings["S&L DT"] = L["S&L: Datatexts"]
 	table.insert(E.ConfigModeLayouts, #(E.ConfigModeLayouts)+1, "S&L BG");
 	E.ConfigModeLocalizedStrings["S&L BG"] = L["S&L: Backgrounds"]
-	table.insert(E.ConfigModeLayouts, #(E.ConfigModeLayouts)+1, "S&L M");
-	E.ConfigModeLocalizedStrings["S&L M"] = L["S&L: Misc"]
+	table.insert(E.ConfigModeLayouts, #(E.ConfigModeLayouts)+1, "S&L MISC");
+	E.ConfigModeLocalizedStrings["S&L MISC"] = L["S&L: Misc"]
 end

 function SLE:LootShow()
diff --git a/ElvUI_SLE/modules/backgrounds/backgrounds.lua b/ElvUI_SLE/modules/backgrounds/backgrounds.lua
index cdaab76..9f28edc 100644
--- a/ElvUI_SLE/modules/backgrounds/backgrounds.lua
+++ b/ElvUI_SLE/modules/backgrounds/backgrounds.lua
@@ -98,10 +98,10 @@ function BG:Initialize()
 	BG:UpdateFrames()
 	BG:RegisterHide()

-	E:CreateMover(BottomBG, "BottomBG_Mover", L["Bottom BG"], nil, nil, nil, "S&L,S&L BG")
-	E:CreateMover(LeftBG, "LeftBG_Mover", L["Left BG"], nil, nil, nil, "S&L,S&L BG")
-	E:CreateMover(RightBG, "RightBG_Mover", L["Right BG"], nil, nil, nil, "S&L,S&L BG")
-	E:CreateMover(ActionBG, "ActionBG_Mover", L["Actionbar BG"], nil, nil, nil, "S&L,S&L BG")
+	E:CreateMover(BottomBG, "BottomBG_Mover", L["Bottom BG"], nil, nil, nil, "ALL,S&L,S&L BG")
+	E:CreateMover(LeftBG, "LeftBG_Mover", L["Left BG"], nil, nil, nil, "ALL,S&L,S&L BG")
+	E:CreateMover(RightBG, "RightBG_Mover", L["Right BG"], nil, nil, nil, "ALL,S&L,S&L BG")
+	E:CreateMover(ActionBG, "ActionBG_Mover", L["Actionbar BG"], nil, nil, nil, "ALL,S&L,S&L BG")
 end

 E:RegisterModule(BG:GetName())
\ No newline at end of file
diff --git a/ElvUI_SLE/modules/datatexts/add_panels.lua b/ElvUI_SLE/modules/datatexts/add_panels.lua
index 769fa74..b2fc216 100644
--- a/ElvUI_SLE/modules/datatexts/add_panels.lua
+++ b/ElvUI_SLE/modules/datatexts/add_panels.lua
@@ -33,7 +33,7 @@ function LO:Initialize()
 	DTP:Resize()

 	for _,v in pairs(panels) do
-		E:CreateMover(v[5], v[2].."_Mover", L[v[2]], nil, nil, nil, "S&L,S&L DT")
+		E:CreateMover(v[5], v[2].."_Mover", L[v[2]], nil, nil, nil, "ALL,S&L,S&L DT")
 	end
 end

diff --git a/ElvUI_SLE/modules/datatexts/dashboard/dashboard.lua b/ElvUI_SLE/modules/datatexts/dashboard/dashboard.lua
index 1ca78c1..901beb5 100644
--- a/ElvUI_SLE/modules/datatexts/dashboard/dashboard.lua
+++ b/ElvUI_SLE/modules/datatexts/dashboard/dashboard.lua
@@ -21,7 +21,7 @@ local bholder = CreateFrame("Frame", "BoardsHolder", E.UIParent)
 bholder:Point('TOPLEFT', E.UIParent, 'TOPLEFT', 0, -21)
 bholder:Size(((DTPANELS_WIDTH*4)+(PANEL_SPACING*3)), DTPANELS_HEIGHT)

-E:CreateMover(BoardsHolder, "Dashboard", L["Dashboard"], nil, nil, nil, "S&L,S&L M")
+E:CreateMover(BoardsHolder, "Dashboard", L["Dashboard"], nil, nil, nil, "ALL,S&L,S&L MISC")

 local board = CreateFrame('frame', 'board', BoardsHolder)

diff --git a/ElvUI_SLE/modules/marks/marks.lua b/ElvUI_SLE/modules/marks/marks.lua
index 7c333c7..3897795 100644
--- a/ElvUI_SLE/modules/marks/marks.lua
+++ b/ElvUI_SLE/modules/marks/marks.lua
@@ -126,7 +126,7 @@ function RM:Initialize()
 	RM:CreateButtons()
 	self:RegisterEvent("PLAYER_ENTERING_WORLD", "UpdateVisibility");

-	E:CreateMover(mark_menu, "MarkMover", "RM", nil, nil, nil, "S&L,S&L M")
+	E:CreateMover(mark_menu, "MarkMover", "RM", nil, nil, nil, "ALL,S&L,S&L MISC")
 end

 E:RegisterModule(RM:GetName())
\ No newline at end of file
diff --git a/ElvUI_SLE/modules/pvpmover/pvpmover.lua b/ElvUI_SLE/modules/pvpmover/pvpmover.lua
index 84d1cb5..87af78b 100644
--- a/ElvUI_SLE/modules/pvpmover/pvpmover.lua
+++ b/ElvUI_SLE/modules/pvpmover/pvpmover.lua
@@ -19,7 +19,7 @@ function P:Initialize()
 	WorldStateAlwaysUpFrame:ClearAllPoints()
 	WorldStateAlwaysUpFrame:SetPoint("CENTER", holder)
 	self:RegisterEvent("UPDATE_WORLD_STATES", update)
-	E:CreateMover(holder, "PvPMover", "PvP", nil, nil, nil, "S&L,S&L M")
+	E:CreateMover(holder, "PvPMover", "PvP", nil, nil, nil, "ALL,S&L,S&L MISC")
 end

 E:RegisterModule(P:GetName())
\ No newline at end of file
diff --git a/ElvUI_SLE/modules/raidutility/raidutility.lua b/ElvUI_SLE/modules/raidutility/raidutility.lua
index a61546c..2ae13c3 100644
--- a/ElvUI_SLE/modules/raidutility/raidutility.lua
+++ b/ElvUI_SLE/modules/raidutility/raidutility.lua
@@ -8,7 +8,7 @@ E.RaidUtility = RU
 M.InitializeSLE = M.Initialize
 function M:Initialize()
 	M.InitializeSLE(self)
-	E:CreateMover(RaidUtility_ShowButton, "RaidUtility_Mover", L["Raid Utility"], nil, nil, nil, "S&L,S&L M")
+	E:CreateMover(RaidUtility_ShowButton, "RaidUtility_Mover", L["Raid Utility"], nil, nil, nil, "ALL,S&L,S&L MISC")
 	local mover = RaidUtility_Mover
 	local frame = RaidUtility_ShowButton
 	if E.db.movers == nil then E.db.movers = {} end
diff --git a/ElvUI_SLE/modules/uibuttons/uibuttons.lua b/ElvUI_SLE/modules/uibuttons/uibuttons.lua
index 763e686..4b57266 100644
--- a/ElvUI_SLE/modules/uibuttons/uibuttons.lua
+++ b/ElvUI_SLE/modules/uibuttons/uibuttons.lua
@@ -170,7 +170,7 @@ function UB:Initialize()

 	E.FrameLocks['UIBFrame'] = true

-	E:CreateMover(UIBFrame, "UIBFrameMover", L["UI Buttons"], nil, nil, nil, "S&L,S&L M")
+	E:CreateMover(UIBFrame, "UIBFrameMover", L["UI Buttons"], nil, nil, nil, "ALL,S&L,S&L MISC")
 	UB:MoverSize()
 end