summaryrefslogtreecommitdiffstats
path: root/Main.hs
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-04-24 03:03:52 +0200
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-04-24 03:03:52 +0200
commit2d421c8ecf2e5a8c813dccfa78da6515d7d76784 (patch)
tree24a35e5fca5812f289412516c119e2404802569f /Main.hs
parent5328acb32927792c216b19f1fe3ee32e2a31c442 (diff)
downloadmetatile-2d421c8ecf2e5a8c813dccfa78da6515d7d76784.tar
metatile-2d421c8ecf2e5a8c813dccfa78da6515d7d76784.zip
Clear numlock bit
darcs-hash:20070424010352-a5988-411c7bc6d019f772b412e230cfc19aa06041ca7c
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Main.hs b/Main.hs
index 1c7eab1..aa541ce 100644
--- a/Main.hs
+++ b/Main.hs
@@ -128,7 +128,7 @@ handle (KeyEvent {ev_event_type = t, ev_state = m, ev_keycode = code})
| t == keyPress
= withDisplay $ \dpy -> do
s <- io $ keycodeToKeysym dpy code 0
- whenJust (M.lookup (m,s) keys) id
+ whenJust (M.lookup (complement numlockMask .&. m,s) keys) id
-- manage a new window
handle (MapRequestEvent {ev_window = w}) = withDisplay $ \dpy -> do