Revert "avoid redraw when there's no change"
This reverts commit 6818e07291
.
This broke keys such as ^W to delete-backward-word
This commit is contained in:
parent
6818e07291
commit
31fa07b984
1 changed files with 2 additions and 3 deletions
5
dmenu.c
5
dmenu.c
|
@ -415,9 +415,8 @@ keypress(XKeyEvent *ev)
|
|||
switch(ksym) {
|
||||
default:
|
||||
insert:
|
||||
if (iscntrl((unsigned char)*buf))
|
||||
return;
|
||||
insert(buf, len);
|
||||
if (!iscntrl(*buf))
|
||||
insert(buf, len);
|
||||
break;
|
||||
case XK_Delete:
|
||||
case XK_KP_Delete:
|
||||
|
|
Loading…
Reference in a new issue