diff options
author | Anselm R Garbe | 2008-06-14 11:22:22 +0100 |
---|---|---|
committer | Anselm R Garbe | 2008-06-14 11:22:22 +0100 |
commit | b6aa84e51b315d9e6d6b111b36ac6901f505ddd8 (patch) | |
tree | 4f267402088b26a631523e10f88f9563fa061e69 /dwm.c | |
parent | 9ff5143acba0c6b457bfb92370c8397b7f124f3a (diff) |
removed the ButtonPressMask for root windows as well
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1379,7 +1379,7 @@ setup(void) { PropModeReplace, (unsigned char *) netatom, NetLast); /* select for events */ - wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask|ButtonPressMask + wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask |EnterWindowMask|LeaveWindowMask|StructureNotifyMask; XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa); XSelectInput(dpy, root, wa.event_mask); |