all repos — dwm @ 635b64384dc8723c46615924eab05412e53e86a5

my dwm build

fixed an issue in Peter's patch (it is no good idea to restack() all clients on enternotify()
Anselm R. Garbe garbeam@gmail.com
Sun, 30 Sep 2007 18:33:05 +0200
commit

635b64384dc8723c46615924eab05412e53e86a5

parent

bedbe59aaac1651643e9084fd5cdeb0883ea40e4

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M dwm.cdwm.c

@@ -648,7 +648,8 @@ if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)

return; if((c = getclient(ev->window))) { focus(c); - restack(); + if(ISTILE && !c->isfloating) + restack(); } else if(ev->window == root) { selscreen = True;