diff options
author | anselm@garbe.us <unknown> | 2010-08-23 17:25:53 +0100 |
---|---|---|
committer | anselm@garbe.us <unknown> | 2010-08-23 17:25:53 +0100 |
commit | 1529058f27821d50d7a1ea085b6362b6b353b399 (patch) | |
tree | b335b90ce1399abf3889e38e9bc21144d4c577f8 | |
parent | 36311d88afc07b61131a165cdc383020b7201d95 (diff) |
applied Hiltjo Posthuma's line saver patch
-rw-r--r-- | dwm.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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 |