View Single Post
01-06-10, 05:49 PM   #19
Akryn
A Firelord
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 479
Originally Posted by ffxiedyn View Post
Bumping for anyone who may know a way to keep the combat log from re-docking to the chat log after i leave grp/raid.

thanks.
Perhaps you can edit your OnLoad code to do so, although I haven't tried it (I'm not really sure how the docking is implemented):

lua Code:
  1. self:RegisterEvent("PLAYER_ENTERING_WORLD")
  2. self:RegisterEvent("PARTY_MEMBERS_CHANGED")
  3. self:RegisterEvent("RAID_ROSTER_UPDATE")
  4. local dummyF = function()end
  5. ChatFrame2.ClearAllPoints = dummyF
  6. ChatFrame2.SetPoint = dummyF
  7. ChatFrame2.SetHeight = dummyF
  8. ChatFrame2.SetWidth = dummyF
  9. ChatFrame2.SetAllPoints = dummyF
  Reply With Quote