ecore_cocoa: fix the backspace key

The backspace key is supposed to send an ASCII code of 0x08, not 0x7F
(this would be the delete key). This has not be seen before as it is is
rare to use the ASCII code for the BackSpace key.

@fix
This commit is contained in:
Jean Guyomarc'h 2017-10-29 16:06:31 +01:00
parent d28dddfdea
commit 744d2a63c5
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ static const struct _ecore_cocoa_keys_s keystable[] =
{ 123, "braceleft", "{" },
{ 124, "pipe", "|" },
{ 125, "braceright", "}" },
{ 127, "BackSpace", "\177" },
{ 127, "BackSpace", "\x08" },
{ 126, "asciitilde", "~" },
{ 160, "w0", "" },