From: arg@mmvi Date: Fri, 15 Sep 2006 12:21:25 +0000 (+0200) Subject: added visibility check to enternotify as well X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=2511b5c6756e10fb29153559fee95bd493451e72 added visibility check to enternotify as well --- diff --git a/event.c b/event.c index c59385d..3783eb4 100644 --- a/event.c +++ b/event.c @@ -232,7 +232,7 @@ enternotify(XEvent *e) { if(ev->mode != NotifyNormal || ev->detail == NotifyInferior) return; - if((c = getclient(ev->window)) || (c = getctitle(ev->window))) + if(((c = getclient(ev->window)) || (c = getctitle(ev->window))) && isvisible(c)) focus(c); else if(ev->window == root) { issel = True;