diff options
author | James Booth <boothj5@gmail.com> | 2013-03-04 08:31:02 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-03-04 08:31:02 +0000 |
commit | 6acbb5e51203982bacfbeae8bc6e39230d9ca857 (patch) | |
tree | 1d020f1404ccb5e7cf93680f5e59fded5f76a41c | |
parent | dd32044bd57973a80561ddafeb2e788d07daa609 (diff) | |
download | profani-tty-6acbb5e51203982bacfbeae8bc6e39230d9ca857.tar.gz |
Added alt-backspace key code for ubuntu
-rw-r--r-- | src/ui/inputwin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c index 47556476..9570a563 100644 --- a/src/ui/inputwin.c +++ b/src/ui/inputwin.c @@ -551,6 +551,7 @@ _handle_alt_key(char *input, int *size, int key) case '0': ui_switch_win(9); break; + case 263: case 127: input[*size] = '\0'; gchar *curr_ch = g_utf8_offset_to_pointer(input, end_del); |