From 12d114b63a60b7d8541350b7afd20f5ed5944b23 Mon Sep 17 00:00:00 2001 From: Christian Walther Date: Wed, 25 Jan 2012 20:40:04 +0100 Subject: [PATCH] Allow typing tabs (MOULa does too). --- Sources/Plasma/PubUtilLib/plInputCore/plInputManager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Sources/Plasma/PubUtilLib/plInputCore/plInputManager.cpp b/Sources/Plasma/PubUtilLib/plInputCore/plInputManager.cpp index 189afd96..c9a26f7d 100644 --- a/Sources/Plasma/PubUtilLib/plInputCore/plInputManager.cpp +++ b/Sources/Plasma/PubUtilLib/plInputCore/plInputManager.cpp @@ -293,8 +293,7 @@ void plInputManager::HandleWin32ControlEvent(UINT message, WPARAM Wparam, LPARAM { // These are handled by KEYUP/KEYDOWN and should not be sent // We don't like garbage getting in string fields - if (Wparam == KEY_BACKSPACE || Wparam == KEY_ESCAPE || - Wparam == KEY_TAB) + if (Wparam == KEY_BACKSPACE || Wparam == KEY_ESCAPE) break; BYTE scan = Lparam >> 16;