X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.c;h=c4a705d0419af7cfa20a116d1b646adfaa7553ef;hb=60adbab72636e50dbafe4456c892c1bf26cee690;hp=50f4ea0b685133340f66d443ee4a5b6fa4805303;hpb=3f3086f8b87aed5bf443c8fbcbe32e052fc9c17d;p=dwm.git diff --git a/dwm.c b/dwm.c index 50f4ea0..c4a705d 100644 --- a/dwm.c +++ b/dwm.c @@ -646,8 +646,11 @@ enternotify(XEvent *e) { if(ev->mode != NotifyNormal || ev->detail == NotifyInferior) return; - if((c = getclient(ev->window))) + if((c = getclient(ev->window))) { focus(c); + if(ISTILE && !c->isfloating) + restack(); + } else if(ev->window == root) { selscreen = True; focus(NULL); @@ -1592,7 +1595,7 @@ tile(void) { else { /* tile window */ if(i == 1) { ny = way; - nx += mc->w + 2 * mc->border; + nx += mc->w + mc->border; nw = waw - nx - 2 * c->border; } if(i + 1 == n) /* remainder */ @@ -1602,7 +1605,7 @@ tile(void) { } resize(c, nx, ny, nw, nh, RESIZEHINTS); if(n > 1 && th != wah) - ny = c->y + c->h + 2 * c->border; + ny = c->y + c->h + c->border; } }