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);
else { /* tile window */
if(i == 1) {
ny = way;
- nx += mc->w + mc->border;
+ nx += mc->w + 2 * mc->border;
nw = waw - nx - 2 * c->border;
}
if(i + 1 == n) /* remainder */
}
resize(c, nx, ny, nw, nh, RESIZEHINTS);
if(n > 1 && th != wah)
- ny = c->y + c->h + c->border;
+ ny = c->y + c->h + 2 * c->border;
}
}