mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-06 03:28:00 +02:00
terminal: Send ASCII DEL on for backspace
This commit is contained in:
parent
a1627927c7
commit
71a4cf4374
1 changed files with 2 additions and 0 deletions
|
|
@ -2123,6 +2123,8 @@ key_handler(struct window *window, struct input *input, uint32_t time,
|
|||
break;
|
||||
|
||||
case XKB_KEY_BackSpace:
|
||||
ch[len++] = 0x7f;
|
||||
break;
|
||||
case XKB_KEY_Tab:
|
||||
case XKB_KEY_Linefeed:
|
||||
case XKB_KEY_Clear:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue