From: Mikael Magnusson Date: Wed, 19 Mar 2008 11:49:50 +0000 (+0100) Subject: Don't use GrabModeSync, it hangs the xserver on chains sometimes. X-Git-Tag: mikabox-3.4.7.2~47 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=97ce872e3a490a8ed1a043593fd4bb8132e10bf9;p=mikachu%2Fopenbox.git Don't use GrabModeSync, it hangs the xserver on chains sometimes. --- diff --git a/openbox/keyboard.c b/openbox/keyboard.c index ca3992d5..2f869de5 100644 --- a/openbox/keyboard.c +++ b/openbox/keyboard.c @@ -51,13 +51,13 @@ static void grab_keys(gboolean grab) while (p) { if (p->key && p->grab) grab_key(p->key, p->state, obt_root(ob_screen), - GrabModeSync); + GrabModeAsync); p = p->next_sibling; } if (curpos) grab_key(config_keyboard_reset_keycode, config_keyboard_reset_state, - obt_root(ob_screen), GrabModeSync); + obt_root(ob_screen), GrabModeAsync); } } @@ -261,8 +261,6 @@ void keyboard_event(ObClient *client, const XEvent *e) } p = p->next_sibling; } - - XAllowEvents(obt_display, AsyncKeyboard, event_curtime); } static void node_rebind(KeyBindingTree *node)