From: arg@suckless.org Date: Tue, 13 Nov 2007 17:16:18 +0000 (+0100) Subject: applied Ryan Sorensen bugfix which allows slock to acquire the keyboard grab asynchro... X-Git-Url: https://git.armaanb.net/?p=slock.git;a=commitdiff_plain;h=1fd4e7b23e872c16902d222b6c870116c948903c applied Ryan Sorensen bugfix which allows slock to acquire the keyboard grab asynchroneously --- diff --git a/slock.c b/slock.c index 866df90..daa3cf7 100644 --- a/slock.c +++ b/slock.c @@ -87,7 +87,7 @@ main(int argc, char **argv) { XMapRaised(dpy, w); for(len = 1000; len; len--) { if(XGrabPointer(dpy, root, False, ButtonPressMask | ButtonReleaseMask | PointerMotionMask, - GrabModeAsync, GrabModeSync, None, invisible, CurrentTime) == GrabSuccess) + GrabModeAsync, GrabModeAsync, None, invisible, CurrentTime) == GrabSuccess) break; usleep(1000); }