From ad7a8e528a29738a0e56d816a50d6fa2a041bb98 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sat, 6 Aug 2022 12:10:14 +0200 Subject: [PATCH] Fix tab navigation --- Source/Engine/UI/GUI/Common/TextBoxBase.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Engine/UI/GUI/Common/TextBoxBase.cs b/Source/Engine/UI/GUI/Common/TextBoxBase.cs index d4fc42d39..36c6fc1f4 100644 --- a/Source/Engine/UI/GUI/Common/TextBoxBase.cs +++ b/Source/Engine/UI/GUI/Common/TextBoxBase.cs @@ -1282,6 +1282,9 @@ namespace FlaxEngine.GUI SetSelection(TextLength); return true; } + case KeyboardKeys.Tab: + // Don't process + return false; } return true;