pplied Sanders appendtag patch

This commit is contained in:
Anselm R.Garbe
2006-08-14 15:31:58 +02:00
parent 2ffdc1936c
commit fe3dfbbe90
2 changed files with 12 additions and 2 deletions

View File

@ -4,6 +4,7 @@
*/
#include "dwm.h"
#include <stdlib.h>
#include <unistd.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
@ -360,6 +361,11 @@ grabkeys()
unsigned int i;
KeyCode code;
while(XGrabKeyboard(dpy, root, True, GrabModeAsync,
GrabModeAsync, CurrentTime) != GrabSuccess)
usleep(1000);
XUngrabKeyboard(dpy, CurrentTime);
for(i = 0; i < len; i++) {
code = XKeysymToKeycode(dpy, key[i].keysym);
XGrabKey(dpy, code, key[i].mod, root, True,