This website works better with JavaScript.
Home
Explore
Help
Sign In
tovi
/
dmenu
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Revert "avoid redraw when there's no change"
This reverts commit
6818e07291
. This broke keys such as ^W to delete-backward-word
master
Hiltjo Posthuma
3 years ago
parent
6818e07291
commit
31fa07b984
1 changed files
with
2 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-3
dmenu.c
+ 2
- 3
dmenu.c
View File
@ -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
:
Write
Preview
Loading…
Cancel
Save