View Bug Report
FTC combat log window will not hide properly
Bug #: 1537
File: Foundry Tactical Combat (FTC)
Date: 01/17/16 10:35 AM
By: Baertram
Status: Unconfirmed
Hey there,

your combat log window sometimes will not hide properly if the chat is maximized.
This will happen e.g. if you start the game with the chat minimzed (through other addons) and afterwards you'll maximize the chat.
The combat log stays visible in the back.

I checked your src code and found this lines:
Lua Code:
  1. In initialize:
  2.     -- Hook into chat system
  3.         ZO_PreHook(CHAT_SYSTEM, "Minimize", function() FTC.Log:SetupChat( false ) end)
  4.         ZO_PreHook(CHAT_SYSTEM, "Maximize", function() FTC.Log:SetupChat( true ) end)
  5.  
  6.     --[[
  7.      * Setup Combat Log Interaction with Chat
  8.      * --------------------------------
  9.      * Called by FTC.Log:Initialize()
  10.      * --------------------------------
  11.      ]]--
  12.     function FTC.Log:SetupChat( chatShown )
  13.  
  14.         -- Toggle visibility with chat
  15.         if ( FTC.Vars.AlternateChat ) then FTC_CombatLog:SetHidden( chatShown ) end
  16.  
  17.         -- Always show in move mode
  18.         if ( FTC.move ) then FTC_CombatLog:SetHidden(false) end
  19.     end

But even if I use /script or ZGOO addons to execute "FTC_CombatLog:SetHidden(true)" it will not be hidden.
It will be hidden if I press the ESC key so the chat and everything else will be hidden, but until that it won't hide properly.