Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
disabled XINULATOR code for now
[dwm.git]
/
dwm.c
diff --git
a/dwm.c
b/dwm.c
index
d3169be
..
e3afc9a
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-1,4
+1,4
@@
-#define XINULATOR /* debug, simulates dual head */
+
//
#define XINULATOR /* debug, simulates dual head */
/* See LICENSE file for copyright and license details.
*
* dynamic window manager is designed like any other X client as well. It is
/* See LICENSE file for copyright and license details.
*
* dynamic window manager is designed like any other X client as well. It is
@@
-400,12
+400,9
@@
buttonpress(XEvent *e) {
for(m = mons; m; m = m->next)
if(ev->window == m->barwin) {
if(m != selmon) {
for(m = mons; m; m = m->next)
if(ev->window == m->barwin) {
if(m != selmon) {
- if(selmon->stack)
- focus(selmon->stack);
- else {
- selmon = m;
- focus(NULL);
- }
+ unfocus(selmon->stack);
+ selmon = m;
+ focus(NULL);
}
break;
}
}
break;
}
@@
-1608,6
+1605,7
@@
unfocus(Client *c) {
return;
grabbuttons(c, False);
XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]);
return;
grabbuttons(c, False);
XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]);
+ XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
}
void
}
void