View Single Post
07-02-10, 03:09 PM   #15
AnrDaemon
A Chromatic Dragonspawn
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 156
*sigh*
and now they changed it again. Seems like they have introduced new container for default chat tabs.
I've been using the
Lua Code:
  1. function FCF_SetTabPosition(chatFrame, x)
  2.     local chatTab = _G[chatFrame:GetName() .. "Tab"];
  3.     local chatFrameResizeBottom = _G[chatFrame:GetName() .. "ResizeBottom"];
  4.     chatTab:SetPoint("BOTTOMLEFT", chatFrame:GetName() .. "Background", "BOTTOMLEFT", x, -17);
  5.     chatTab:SetFrameStrata("MEDIUM");
  6.     chatTab:SetFrameLevel(1);
  7. end
, but now it only reposition tabs of foreign frames, not the main framestack.
Have tried to move GeneralDockManager, but without much success.
Any good advice?
  Reply With Quote