reverted Peters patch to tile, I will discuss the reasons at dwm@

master
Anselm R. Garbe 2007-10-01 21:25:15 +02:00
parent 57676994ea
commit 95091dcad4
1 changed files with 3 additions and 6 deletions

9
dwm.c
View File

@ -646,11 +646,8 @@ enternotify(XEvent *e) {
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior) if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
return; return;
if((c = getclient(ev->window))) { if((c = getclient(ev->window)))
focus(c); focus(c);
if(ISTILE && !c->isfloating)
restack();
}
else if(ev->window == root) { else if(ev->window == root) {
selscreen = True; selscreen = True;
focus(NULL); focus(NULL);
@ -1595,7 +1592,7 @@ tile(void) {
else { /* tile window */ else { /* tile window */
if(i == 1) { if(i == 1) {
ny = way; ny = way;
nx += mc->w + mc->border; nx += mc->w + 2 * mc->border;
nw = waw - nx - 2 * c->border; nw = waw - nx - 2 * c->border;
} }
if(i + 1 == n) /* remainder */ if(i + 1 == n) /* remainder */
@ -1605,7 +1602,7 @@ tile(void) {
} }
resize(c, nx, ny, nw, nh, RESIZEHINTS); resize(c, nx, ny, nw, nh, RESIZEHINTS);
if(n > 1 && th != wah) if(n > 1 && th != wah)
ny = c->y + c->h + c->border; ny = c->y + c->h + 2 * c->border;
} }
} }