Thread Tools Display Modes
Prev Previous Post   Next Post Next
07-30-11, 04:39 AM   #21
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
Might be a slight necro, but I feel this can still be of use.

The chat frame tabs are set to anchor to the chat background when the UI scale changes (for example when switching in and out of windowed mode). Because of this, aside from moving the GeneralDockManager, you also need to hook FCF_SetTabPosition.

For example:

Code:
hooksecurefunc("FCF_SetTabPosition", function(chatFrame, x)
	local chatTab = _G[chatFrame:GetName().."Tab"];
	chatTab:ClearAllPoints();
	chatTab:SetPoint("BOTTOMLEFT", chatFrame:GetName().."Background", "TOPLEFT", x+2, -179)
end)
  Reply With Quote
 

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » LF Mod to move chat tabs below chatframe.


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off