1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-29 16:07:47 +02:00

fix backspace issue on some platforms

This commit is contained in:
Jfreegman 2014-06-26 11:19:51 -04:00
parent 8d68b5cc01
commit 581261afca
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

View File

@ -230,6 +230,7 @@ bool input_handle(ToxWindow *self, wint_t key, int x, int y, int mx_x, int mx_y)
bool match = true;
switch (key) {
case 0x7f:
case KEY_BACKSPACE:
input_backspace(self, x, y, mx_x, mx_y);
break;