WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   AddOn Search/Requests (https://www.wowinterface.com/forums/forumdisplay.php?f=6)
-   -   LF Mod to move chat tabs below chatframe. (https://www.wowinterface.com/forums/showthread.php?t=17967)

Haleth 07-30-11 04:39 AM

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)


Aprikot 07-31-11 06:04 PM

I noticed this also, and was getting used to doing an extra reload :p. Thanks for the fix.

zoktar 12-31-11 03:15 AM

so happy i found this thread! =) really deserves another necro!.

Verttex 12-31-11 09:00 AM

Quote:

Originally Posted by sylvanaar (Post 241207)
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?

Phanx 12-31-11 11:15 PM

Quote:

Originally Posted by Verttex (Post 250323)
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.


All times are GMT -6. The time now is 12:11 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI