Quantcast

Fix 7.1 breaking bugs

Joe Vaughan [10-25-16 - 20:02]
Fix 7.1 breaking bugs

Fix for #8 issues.
Bodyguard unitframe disabled (doesn't work right in legion anyway) until
we do an upgrade to oUF
Filename
SVUI_!Core/system/debug.lua
SVUI_Chat/SVUI_Chat.lua
SVUI_Skins/components/blizzard/chat.lua
SVUI_UnitFrames/SVUI_UnitFrames.xml
diff --git a/SVUI_!Core/system/debug.lua b/SVUI_!Core/system/debug.lua
index 9f151cd..433345f 100644
--- a/SVUI_!Core/system/debug.lua
+++ b/SVUI_!Core/system/debug.lua
@@ -392,7 +392,7 @@ local function InitializeScriptError()
     SV.ScriptError.Clear:SetStyle("Button")
     SV.ScriptError:SetScript("OnShow", ScriptError_OnShow)
     SV.API:Set("ScrollBar", SVUI_ScriptErrorDialogScrollBar)
-    ScriptErrorDialog:SetStyle("!_Frame", "Transparent")
+    --ScriptErrorDialog:SetStyle("!_Frame", "Transparent")
     ScriptErrorDialog.Input:SetScript("OnTextChanged", ScriptError_OnTextChanged)
     SV.ScriptError:RegisterForDrag("LeftButton");
 end
diff --git a/SVUI_Chat/SVUI_Chat.lua b/SVUI_Chat/SVUI_Chat.lua
index d9fa438..4dc584c 100644
--- a/SVUI_Chat/SVUI_Chat.lua
+++ b/SVUI_Chat/SVUI_Chat.lua
@@ -1097,7 +1097,7 @@ do
 			if(not chat.hookedHyperLinks) then
 				chat:HookScript('OnHyperlinkEnter', _hook_OnHyperlinkEnter)
 				chat:HookScript('OnHyperlinkLeave', _hook_OnHyperlinkLeave)
-				chat:HookScript('OnMessageScrollChanged', _hook_OnMessageScrollChanged)
+				--chat:HookScript('OnMessageScrollChanged', _hook_OnMessageScrollChanged)
 				chat:HookScript('OnMouseWheel', _hook_OnMouseWheel)
 				tab:HookScript('OnEnter', _hook_TabOnEnter)
 				tab:HookScript('OnLeave', _hook_TabOnLeave)
diff --git a/SVUI_Skins/components/blizzard/chat.lua b/SVUI_Skins/components/blizzard/chat.lua
index e6ea8c9..951b4e7 100644
--- a/SVUI_Skins/components/blizzard/chat.lua
+++ b/SVUI_Skins/components/blizzard/chat.lua
@@ -201,7 +201,8 @@ local function ChatStyle()
 	for i = 1, #ChatFrameWipeList do
 		local frame = _G[ChatFrameWipeList[i]]
 		if(frame) then
-			frame:RemoveTextures()
+			-- JV: 20161025 - Broken in 70100-22900 (7.1 build 22900)
+			--frame:RemoveTextures()
 		end
 	end

diff --git a/SVUI_UnitFrames/SVUI_UnitFrames.xml b/SVUI_UnitFrames/SVUI_UnitFrames.xml
index 30f67b6..d65e65c 100644
--- a/SVUI_UnitFrames/SVUI_UnitFrames.xml
+++ b/SVUI_UnitFrames/SVUI_UnitFrames.xml
@@ -138,5 +138,5 @@
     <Script file="frames.lua"/>
     <Script file="groups.lua"/>
     <Script file="view.lua"/>
-    <Script file="bodyguard.lua"/>
+    <!-- Script file="bodyguard.lua"/-->
 </Ui>