commit b62b14901c275ea4f146825599594d6e1e420324
parent 28a80838ef9c915fd22d671e299aa80aef85de99
Author: Kris Maglione <jg@suckless.org>
Date: Mon, 12 Feb 2007 15:33:19 -0500
Grab buttons with the keyboard grab async until these freezes are fixed
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mouse.c b/mouse.c
@@ -465,8 +465,8 @@ grab_button(Window w, uint button, ulong mod) {
GrabModeSync, GrabModeSync, None, None);
if((mod != AnyModifier) && num_lock_mask) {
XGrabButton(blz.dpy, button, mod | num_lock_mask, w, False, ButtonMask,
- GrabModeSync, GrabModeSync, None, None);
+ GrabModeSync, GrabModeAsync, None, None);
XGrabButton(blz.dpy, button, mod | num_lock_mask | LockMask, w, False,
- ButtonMask, GrabModeSync, GrabModeSync, None, None);
+ ButtonMask, GrabModeSync, GrabModeAsync, None, None);
}
}