Browse Source

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

master
Anselm R.Garbe 18 years ago
parent
commit
0af369ba65
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      main.c

+ 2
- 0
main.c View File

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


Loading…
Cancel
Save