Jukka Salmi --> dwm (2006-09-25 15:46:21 +0200):
> But, reading `hg log -r473 -p' I don't see the culprit... Any hints?

Found it: there is some old code which handled maximised windows in
tiling mode...


Cheers, Jukka

-- 
bashian roulette:
$ ((RANDOM%6)) || rm -rf ~
diff -r be4f90c03582 event.c
--- a/event.c   Mon Sep 25 08:21:51 2006 +0200
+++ b/event.c   Mon Sep 25 16:33:42 2006 +0200
@@ -190,11 +190,6 @@ configurerequest(XEvent *e) {
        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;
-               }
                gravitate(c, True);
                if(ev->value_mask & CWX)
                        c->x = ev->x;

Reply via email to