mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
Multi_key (K_COMPOSE) and Menu (K_MENU) are now supported
This commit is contained in:
parent
a5dc496c38
commit
a59e509033
1 changed files with 8 additions and 0 deletions
|
@ -338,6 +338,14 @@ XLateKey (XKeyEvent * ev, int *k, int *u)
|
|||
key = QFK_RMETA;
|
||||
break;
|
||||
|
||||
case XK_Multi_key:
|
||||
key = QFK_COMPOSE;
|
||||
break;
|
||||
|
||||
case XK_Menu:
|
||||
key = QFK_MENU;
|
||||
break;
|
||||
|
||||
case XK_Caps_Lock:
|
||||
key = QFK_CAPSLOCK;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue