applied Hiltjo Posthuma's line saver patch

This commit is contained in:
anselm@garbe.us 2010-08-23 17:25:53 +01:00
parent 36311d88af
commit 1529058f27
1 changed files with 1 additions and 5 deletions

6
dwm.c
View File

@ -790,7 +790,6 @@ drawtext(const char *text, unsigned long col[ColLast], Bool invert) {
void
enternotify(XEvent *e) {
Client *c;
Monitor *m;
XCrossingEvent *ev = &e->xcrossing;
@ -800,10 +799,7 @@ enternotify(XEvent *e) {
unfocus(selmon->sel, True);
selmon = m;
}
if((c = wintoclient(ev->window)))
focus(c);
else
focus(NULL);
focus(wintoclient(ev->window));
}
void