mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: #920 NeL - X11 Modifier Keys (Patch provided by rti)
This commit is contained in:
parent
61161d3092
commit
cca38ca645
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