From 037ad94ae758334210f70674634c444e3239a1a4 Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Wed, 22 Feb 2023 17:37:03 -0600 Subject: [PATCH] Small Fix --- Source/Engine/UI/GUI/Common/TextBoxBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/UI/GUI/Common/TextBoxBase.cs b/Source/Engine/UI/GUI/Common/TextBoxBase.cs index 732b867d6..fb130bf18 100644 --- a/Source/Engine/UI/GUI/Common/TextBoxBase.cs +++ b/Source/Engine/UI/GUI/Common/TextBoxBase.cs @@ -1196,7 +1196,7 @@ namespace FlaxEngine.GUI SetSelection(hitPos); } - if (Cursor == CursorType.Default) + if (Cursor == CursorType.Default && _changeCursor) Cursor = CursorType.IBeam; return true;