diff --git a/Client/Chat.cs b/Client/Chat.cs index 8ece9a4..45e4a31 100644 --- a/Client/Chat.cs +++ b/Client/Chat.cs @@ -39,7 +39,14 @@ namespace CoopClient get { return CurrentHidden; } set { - MainScaleForm.CallFunction(value ? "hide" : "showFeed"); + if (value && !CurrentHidden) + { + MainScaleForm.CallFunction("hide"); + } + else if (!value && CurrentHidden) + { + MainScaleForm.CallFunction("showFeed"); + } CurrentHidden = value; }