Quantcast

Fixed combat log bug not anchoring correctly if it is the only chat window in the right panel

Repooc [07-16-12 - 20:56]
Fixed combat log bug not anchoring correctly if it is the only chat window in the right panel
Filename
ElvUI_SLE/modules/chat/chat.lua
diff --git a/ElvUI_SLE/modules/chat/chat.lua b/ElvUI_SLE/modules/chat/chat.lua
index fb157d3..1c675d5 100644
--- a/ElvUI_SLE/modules/chat/chat.lua
+++ b/ElvUI_SLE/modules/chat/chat.lua
@@ -147,8 +147,8 @@ function CH:PositionChat(override)
 			chat:SetSize(E.db.general.panelWidth - 6, (E.db.general.panelHeight - 27)) -- <<< Changed
 		else
 			chat:ClearAllPoints()
-			chat:Point("BOTTOMLEFT", RightChatDataPanel, "TOPLEFT", 1, 3)
-			chat:Size(E.db.general.panelWidth - 11, (E.db.general.panelHeight - 60) - CombatLogQuickButtonFrame_Custom:GetHeight())
+			chat:Point("BOTTOMRIGHT", RightChatDataPanel, "TOPRIGHT", 10, 3)
+			chat:Size(E.db.general.panelWidth - 6, (E.db.general.panelHeight - 27) - CombatLogQuickButtonFrame_Custom:GetHeight())
 		end

 		FCF_SavePositionAndDimensions(chat)