diff options
author | Anselm R. Garbe | 2007-03-27 16:52:50 +0200 |
---|---|---|
committer | Anselm R. Garbe | 2007-03-27 16:52:50 +0200 |
commit | 1fa4fa386aa7c03f8fa3bf2ffedd78bfe24fe9d4 (patch) | |
tree | f98cb742a1ad59059b0f457c69aca014dfeabd47 /main.c | |
parent | e1515a2fdcf60987d964b0d616bd44ec3980a89b (diff) |
allowing numpad keys as inpyt
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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)) |