Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
deciding for focus(NULL);
[dwm.git]
/
event.c
diff --git
a/event.c
b/event.c
index
20c1533
..
20ab599
100644
(file)
--- a/
event.c
+++ b/
event.c
@@
-236,7
+236,7
@@
enternotify(XEvent *e) {
issel = True;
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
if(sel)
issel = True;
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
if(sel)
-
XSetWindowBorder(dpy, sel->win, dc.sel[ColBorder]
);
+
focus(sel
);
}
}
}
}
@@
-273,9
+273,9
@@
leavenotify(XEvent *e) {
XCrossingEvent *ev = &e->xcrossing;
if((ev->window == root) && !ev->same_screen) {
XCrossingEvent *ev = &e->xcrossing;
if((ev->window == root) && !ev->same_screen) {
- issel = False;
if(sel)
if(sel)
- XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]);
+ focus(NULL);
+ issel = False;
}
}
}
}