From ae4534a29a655669d3e767d9b0c3b52f1dd135ef Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Mon, 31 May 2021 18:57:36 -0700 Subject: [PATCH] Fix ChatBox not calling OnMouseExited --- Content.Client/Chat/ChatBox.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Client/Chat/ChatBox.cs b/Content.Client/Chat/ChatBox.cs index 5561e70e41..2bf877d901 100644 --- a/Content.Client/Chat/ChatBox.cs +++ b/Content.Client/Chat/ChatBox.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; @@ -700,6 +700,8 @@ namespace Content.Client.Chat protected override void MouseExited() { + base.MouseExited(); + if (_currentDrag == DragMode.None && !_lobbyMode) { DefaultCursorShape = CursorShape.Arrow;