applied Ryan Sorensen bugfix which allows slock to acquire the keyboard grab asynchroneously
This commit is contained in:
parent
20e294a66f
commit
1fd4e7b23e
1 changed files with 1 additions and 1 deletions
2
slock.c
2
slock.c
|
@ -87,7 +87,7 @@ main(int argc, char **argv) {
|
||||||
XMapRaised(dpy, w);
|
XMapRaised(dpy, w);
|
||||||
for(len = 1000; len; len--) {
|
for(len = 1000; len; len--) {
|
||||||
if(XGrabPointer(dpy, root, False, ButtonPressMask | ButtonReleaseMask | PointerMotionMask,
|
if(XGrabPointer(dpy, root, False, ButtonPressMask | ButtonReleaseMask | PointerMotionMask,
|
||||||
GrabModeAsync, GrabModeSync, None, invisible, CurrentTime) == GrabSuccess)
|
GrabModeAsync, GrabModeAsync, None, invisible, CurrentTime) == GrabSuccess)
|
||||||
break;
|
break;
|
||||||
usleep(1000);
|
usleep(1000);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue