# HG changeset patch # User arg@mmvi # Date 1159209510 -7200 # Node ID 0d2559f46b9e8814c59e262f605520641d518ec3 # Parent be4f90c03582c2628e105b501d2531a4546f3a2a applied sanders jukka patch diff -r be4f90c03582 -r 0d2559f46b9e dwm.h --- a/dwm.h Mon Sep 25 08:21:51 2006 +0200 +++ b/dwm.h Mon Sep 25 20:38:30 2006 +0200 @@ -101,7 +101,7 @@ extern void (*arrange)(Arg *); /* arrange function, indicates mode */ extern Atom wmatom[WMLast], netatom[NetLast]; extern Bool running, issel, *seltag; /* seltag is array of Bool */ -extern Client *clients, *sel, *stack; /* global cleint list and stack */ +extern Client *clients, *sel, *stack; /* global client list and stack */ extern Cursor cursor[CurLast]; extern DC dc; /* global draw context */ extern Display *dpy; diff -r be4f90c03582 -r 0d2559f46b9e event.c --- a/event.c Mon Sep 25 08:21:51 2006 +0200 +++ b/event.c Mon Sep 25 20:38:30 2006 +0200 @@ -190,11 +190,7 @@ XWindowChanges wc; if((c = getclient(ev->window))) { - if((c == sel) && !c->isfloat && (arrange != dofloat)) { - synconfig(c, sx, sy + bh, sw - 2, sh - 2 - bh, ev->border_width); - XSync(dpy, False); - return; - } + c->ismax = False; gravitate(c, True); if(ev->value_mask & CWX) c->x = ev->x; diff -r be4f90c03582 -r 0d2559f46b9e view.c --- a/view.c Mon Sep 25 08:21:51 2006 +0200 +++ b/view.c Mon Sep 25 20:38:30 2006 +0200 @@ -101,9 +101,8 @@ Client *c; w = sw - mw; - for(n = 0, c = clients; c; c = c->next) - if(isvisible(c) && !c->isfloat) - n++; + for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next)) + n++; if(n > 1) h = (sh - bh) / (n - 1); @@ -116,8 +115,7 @@ resize(c, True, TopLeft); continue; } - if(c->ismax) - togglemax(c); + c->ismax = False; if(n == 1) { c->x = sx; c->y = sy + bh;