X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.c;h=c4a705d0419af7cfa20a116d1b646adfaa7553ef;hb=60adbab72636e50dbafe4456c892c1bf26cee690;hp=277f56107644d79f7dac5c2f0722e2a975dd8e8f;hpb=2fc8a13588eee7b39bcda21838c88ed2f7be42c9;p=dwm.git diff --git a/dwm.c b/dwm.c index 277f561..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); @@ -1569,7 +1572,7 @@ textw(const char *text) { void tile(void) { unsigned int i, n, nx, ny, nw, nh, mw, th; - Client *c; + Client *c, *mc; for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next)) n++; @@ -1582,7 +1585,8 @@ tile(void) { nx = wax; ny = way; - for(i = 0, c = nexttiled(clients); c; c = nexttiled(c->next), i++) { + nw = 0; /* gcc stupidity requires this */ + for(i = 0, c = mc = nexttiled(clients); c; c = nexttiled(c->next), i++) { c->ismax = False; if(i == 0) { /* master */ nw = mw - 2 * c->border; @@ -1591,9 +1595,9 @@ tile(void) { else { /* tile window */ if(i == 1) { ny = way; - nx += mw; + nx += mc->w + mc->border; + nw = waw - nx - 2 * c->border; } - nw = waw - mw - 2 * c->border; if(i + 1 == n) /* remainder */ nh = (way + wah) - ny - 2 * c->border; else @@ -1601,7 +1605,7 @@ tile(void) { } resize(c, nx, ny, nw, nh, RESIZEHINTS); if(n > 1 && th != wah) - ny += nh + 2 * c->border; + ny = c->y + c->h + c->border; } }