all repos — dwm @ 7d7cde0fd6ceae2f7d759b924afd8df279a4ddde

my dwm build

applied sanders jukka patch
arg@mmvi unknown
Mon, 25 Sep 2006 20:38:30 +0200
commit

7d7cde0fd6ceae2f7d759b924afd8df279a4ddde

parent

6b25d06d7d159bf89d740847fedc876ab0137b6b

3 files changed, 5 insertions(+), 11 deletions(-)

jump to
M dwm.hdwm.h

@@ -101,7 +101,7 @@ extern void (*handler[LASTEvent])(XEvent *); /* event handler */

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;
M event.cevent.c

@@ -190,11 +190,7 @@ XConfigureRequestEvent *ev = &e->xconfigurerequest;

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;
M view.cview.c

@@ -101,9 +101,8 @@ int h, i, n, w;

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 @@ if(c->isfloat) {

resize(c, True, TopLeft); continue; } - if(c->ismax) - togglemax(c); + c->ismax = False; if(n == 1) { c->x = sx; c->y = sy + bh;