Browse Source

Allow typing tabs (MOULa does too).

Christian Walther 13 years ago
parent
commit
12d114b63a
  1. 3
      Sources/Plasma/PubUtilLib/plInputCore/plInputManager.cpp

3
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;

Loading…
Cancel
Save