Commit 90cdea1b authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

conhost: Allow events with left alt pressed in edit_line_insert.

parent e710aa08
......@@ -1277,7 +1277,7 @@ static NTSTATUS process_console_input( struct console *console )
^ ctx->insert_key;
if (func) func( console );
else if (ir.Event.KeyEvent.uChar.UnicodeChar && !(ir.Event.KeyEvent.dwControlKeyState & LEFT_ALT_PRESSED))
else if (ir.Event.KeyEvent.uChar.UnicodeChar)
edit_line_insert( console, &ir.Event.KeyEvent.uChar.UnicodeChar, 1 );
if (!(console->mode & ENABLE_LINE_INPUT) && ctx->status == STATUS_PENDING)
......
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