mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-24 05:01:40 +00:00
Fix ctrl-c etc codes for edit fields
This commit is contained in:
parent
344ff23164
commit
9f22ae9cb2
1 changed files with 2 additions and 0 deletions
|
@ -731,6 +731,8 @@ static void IN_ProcessEvents( void )
|
||||||
|
|
||||||
if( key == K_BACKSPACE )
|
if( key == K_BACKSPACE )
|
||||||
Com_QueueEvent( 0, SE_CHAR, CTRL('h'), 0, 0, NULL );
|
Com_QueueEvent( 0, SE_CHAR, CTRL('h'), 0, 0, NULL );
|
||||||
|
else if( keys[K_CTRL].down && key >= 'a' && key <= 'z' )
|
||||||
|
Com_QueueEvent( 0, SE_CHAR, CTRL(key), 0, 0, NULL );
|
||||||
|
|
||||||
lastKeyDown = key;
|
lastKeyDown = key;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue