From 3a392b855882786d1aa9c842d1c36b5c1cbc576a Mon Sep 17 00:00:00 2001 From: "garbeam@gmail.com" Date: Sat, 25 Jun 2011 09:07:28 +0100 Subject: making enternotify less focus hungry --- dwm.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'dwm.c') diff --git a/dwm.c b/dwm.c index 84c0ae6..8c1adeb 100644 --- a/dwm.c +++ b/dwm.c @@ -820,15 +820,19 @@ drawtext(const char *text, unsigned long col[ColLast], Bool invert) { void enternotify(XEvent *e) { + Client *c; Monitor *m; XCrossingEvent *ev = &e->xcrossing; if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root) return; + c = wintoclient(ev->window); if((m = wintomon(ev->window)) && m != selmon) { unfocus(selmon->sel, True); selmon = m; } + else if(c == selmon->sel || c == NULL) + return; focus((wintoclient(ev->window))); } -- cgit v1.2.3