mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: #936 Invalid character when pressing DEL key under Linux
This commit is contained in:
parent
93277088e1
commit
23d3e04d3e
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)
|
||||
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';
|
||||
if(c>0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue