pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1515a2
)
allowing numpad keys as inpyt
author
Anselm R. Garbe
<arg@suckless.org>
Tue, 27 Mar 2007 14:52:50 +0000
(16:52 +0200)
committer
Anselm R. Garbe
<arg@suckless.org>
Tue, 27 Mar 2007 14:52:50 +0000
(16:52 +0200)
main.c
patch
|
blob
|
history
diff --git
a/main.c
b/main.c
index
fa03ec8
..
9fab328
100644
(file)
--- a/
main.c
+++ b/
main.c
@@
-216,6
+216,13
@@
kpress(XKeyEvent * e) {
len = strlen(text);
buf[0] = 0;
num = XLookupString(e, buf, sizeof buf, &ksym, 0);
+ if(IsKeypadKey(ksym)) {
+ if(ksym == XK_KP_Enter) {
+ ksym = XK_Return;
+ } else if(ksym >= XK_KP_0 && ksym <= XK_KP_9) {
+ ksym = (ksym - XK_KP_0) + XK_0;
+ }
+ }
if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
|| IsMiscFunctionKey(ksym) || IsPFKey(ksym)
|| IsPrivateKeypadKey(ksym))