mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +00:00
Fixed: #936 Invalid character when pressing DEL key under Linux
This commit is contained in:
parent
2a437309aa
commit
fb396b3cb6
1 changed files with 4 additions and 0 deletions
|
@ -312,6 +312,10 @@ void CUnixEventEmitter::processMessage (XEvent &event, CEventServer &server)
|
||||||
// TODO manage the bool (first time pressed)
|
// TODO manage the bool (first time pressed)
|
||||||
server.postEvent (new CEventKeyDown (key, getKeyButton(event.xbutton.state), true, this));
|
server.postEvent (new CEventKeyDown (key, getKeyButton(event.xbutton.state), true, this));
|
||||||
|
|
||||||
|
// don't send a control character when deleting
|
||||||
|
if (key == KeyDELETE)
|
||||||
|
c = 0;
|
||||||
|
|
||||||
Text[c] = '\0';
|
Text[c] = '\0';
|
||||||
if(c>0)
|
if(c>0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue