mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-14 14:11:15 +00:00
* Fix the operation of the delete key in *nix
This commit is contained in:
parent
4ab96373e6
commit
3404fbac56
1 changed files with 6 additions and 0 deletions
|
@ -1209,6 +1209,12 @@ void CL_CharEvent( int key ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// delete is not a printable character and is
|
||||||
|
// otherwise handled by Field_KeyDownEvent
|
||||||
|
if ( key == 127 ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// distribute the key down event to the apropriate handler
|
// distribute the key down event to the apropriate handler
|
||||||
if ( cls.keyCatchers & KEYCATCH_CONSOLE )
|
if ( cls.keyCatchers & KEYCATCH_CONSOLE )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue