From 04441482d4ceab6eab0eaadc5188997a245bf061 Mon Sep 17 00:00:00 2001 From: oga Date: Tue, 22 Jul 2008 21:01:54 +0000 Subject: fix the froggy problem. Implement a handler for the MappingEvent, meaning that the keymap has changed. When this happens, ungrab all bindings, update the map, and regrab. Fixes the problem where some keybindings wouldn't work under non us or uk keymaps (especially the .fr map, it seems). Issue noticed by ajacoutot@, ratchov@, and a few people on misc. Based on an initial diff from ratchov@. ok okan. --- calmwm.c | 1 + 1 file changed, 1 insertion(+) (limited to 'calmwm.c') diff --git a/calmwm.c b/calmwm.c index 2ef2c8b..c64035d 100644 --- a/calmwm.c +++ b/calmwm.c @@ -101,6 +101,7 @@ main(int argc, char **argv) XEV_QUICK(NULL, NULL, Expose, xev_handle_expose, NULL); XEV_QUICK(NULL, NULL, DestroyNotify, xev_handle_destroynotify, NULL); XEV_QUICK(NULL, NULL, ClientMessage, xev_handle_clientmessage, NULL); + XEV_QUICK(NULL, NULL, MappingNotify, xev_handle_mapping, NULL); xev_loop(); -- cgit 1.4.1