Commit b8b0b7fa authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

wineconsole: Don't ignore extended keys.

parent de267347
...@@ -1035,8 +1035,6 @@ static void WCUSER_GenerateKeyInputRecord(struct inner_data* data, BOOL down, ...@@ -1035,8 +1035,6 @@ static void WCUSER_GenerateKeyInputRecord(struct inner_data* data, BOOL down,
if (lParam & (1L << 24)) ir.Event.KeyEvent.dwControlKeyState |= ENHANCED_KEY; if (lParam & (1L << 24)) ir.Event.KeyEvent.dwControlKeyState |= ENHANCED_KEY;
if (sys) ir.Event.KeyEvent.dwControlKeyState |= LEFT_ALT_PRESSED; /* FIXME: gotta choose one */ if (sys) ir.Event.KeyEvent.dwControlKeyState |= LEFT_ALT_PRESSED; /* FIXME: gotta choose one */
if (!(ir.Event.KeyEvent.dwControlKeyState & ENHANCED_KEY))
{
if (down) if (down)
{ {
switch (ToUnicode(wParam, HIWORD(lParam), keyState, buf, 2, 0)) switch (ToUnicode(wParam, HIWORD(lParam), keyState, buf, 2, 0))
...@@ -1054,7 +1052,6 @@ static void WCUSER_GenerateKeyInputRecord(struct inner_data* data, BOOL down, ...@@ -1054,7 +1052,6 @@ static void WCUSER_GenerateKeyInputRecord(struct inner_data* data, BOOL down,
} }
ir.Event.KeyEvent.uChar.UnicodeChar = last; /* FIXME: HACKY... and buggy because it should be a stack, not a single value */ ir.Event.KeyEvent.uChar.UnicodeChar = last; /* FIXME: HACKY... and buggy because it should be a stack, not a single value */
if (!down) last = 0; if (!down) last = 0;
}
WriteConsoleInput(data->hConIn, &ir, 1, &n); WriteConsoleInput(data->hConIn, &ir, 1, &n);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment