Thread Tools Display Modes
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
07-31-11, 06:04 PM   #22
Aprikot
A Frostmaul Preserver
 
Aprikot's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2010
Posts: 284
I noticed this also, and was getting used to doing an extra reload . Thanks for the fix.
  Reply With Quote
12-31-11, 03:15 AM   #23
zoktar
A Cliff Giant
AddOn Compiler - Click to view compilations
Join Date: Dec 2006
Posts: 72
so happy i found this thread! =) really deserves another necro!.
  Reply With Quote
12-31-11, 09:00 AM   #24
Verttex
Super Monkey
 
Verttex's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 297
Originally Posted by sylvanaar View Post
Try running this script:

Code:
/script GENERAL_CHAT_DOCK:ClearAllPoints() GENERAL_CHAT_DOCK:SetPoint("TOPLEFT", ChatFrame1, "BOTTOMLEFT", 0, -6) GENERAL_CHAT_DOCK:SetWidth(ChatFrame1:GetWidth())
Can I get a reset script?
__________________
  Reply With Quote
12-31-11, 11:15 PM   #25
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Originally Posted by Verttex View Post
Can I get a reset script?
Why do you need a reset script? The changes will not persist between sessions, so you can simply reload the UI if you aren't happy with the result.
  Reply With Quote

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

Thread Tools
Display Modes

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