added uppercase chars for C-u and C-h as well

This commit is contained in:
Anselm R.Garbe 2006-08-10 10:10:32 +02:00
parent e4fbc43253
commit 0af369ba65
1 changed files with 2 additions and 0 deletions

2
main.c
View File

@ -172,9 +172,11 @@ kpress(XKeyEvent * e)
return; return;
break; break;
case XK_h: case XK_h:
case XK_H:
ksym = XK_BackSpace; ksym = XK_BackSpace;
break; break;
case XK_u: case XK_u:
case XK_U:
text[0] = 0; text[0] = 0;
match(text); match(text);
drawmenu(); drawmenu();