From 2de20b93c75beaa646fc88c652a0a2cf91146fba Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 19 Jul 2022 15:37:36 +0200 Subject: [PATCH] Fix text box not consuming key down event causing editor shortcuts activate when typing --- 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 a65474092..7651f5031 100644 --- a/Source/Engine/UI/GUI/Common/TextBoxBase.cs +++ b/Source/Engine/UI/GUI/Common/TextBoxBase.cs @@ -1278,7 +1278,7 @@ namespace FlaxEngine.GUI } } - return false; + return true; } } }