From bc36d81586f4c05ff47a080c5fe5501d342ef8e7 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Wed, 12 Oct 2022 14:53:15 +0200 Subject: [PATCH] Fix not releasing chat focus after sending a message (#11865) --- Content.Client/UserInterface/Systems/Chat/ChatUIController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index 9fa77dc9ca..bd565a91f9 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -630,7 +630,7 @@ public sealed class ChatUIController : UIController box.ChatInput.Input.Clear(); box.UpdateSelectedChannel(); - box.ChatInput.ReleaseKeyboardFocus(); + box.ChatInput.Input.ReleaseKeyboardFocus(); } private void OnChatMessage(MsgChatMessage msg)