Browse Source

applied Gottox' grabkey patch

master
Anselm R Garbe 16 years ago
parent
commit
753e0e048e
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      dwm.c

+ 4
- 4
dwm.c View File

@ -763,10 +763,10 @@ grabkeys(void) {
XUngrabKey(dpy, AnyKey, AnyModifier, root);
for(i = 0; i < LENGTH(keys); i++) {
code = XKeysymToKeycode(dpy, keys[i].keysym);
for(j = 0; j < LENGTH(modifiers); j++)
XGrabKey(dpy, code, keys[i].mod | modifiers[j], root, True,
GrabModeAsync, GrabModeAsync);
if((code = XKeysymToKeycode(dpy, keys[i].keysym)))
for(j = 0; j < LENGTH(modifiers); j++)
XGrabKey(dpy, code, keys[i].mod | modifiers[j], root,
True, GrabModeAsync, GrabModeAsync);
}
}
}


Loading…
Cancel
Save