mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: #920 NeL - X11 Modifier Keys (Patch provided by rti)
This commit is contained in:
parent
6430653b1d
commit
8c06ff2d1a
1 changed files with 3 additions and 1 deletions
|
@ -221,7 +221,9 @@ TKey getKey (KeySym keysym)
|
|||
case XK_y: return KeyY;
|
||||
case XK_Z:
|
||||
case XK_z: return KeyZ;
|
||||
default: //nldebug ("0x%x %d '%c'", keysym, keysym, keysym);
|
||||
default:
|
||||
//nldebug ("0x%x %d '%c'", keysym, keysym, keysym);
|
||||
break;
|
||||
}
|
||||
return KeyNOKEY;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue