t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit d589f7679a56b114a2594b5cf49e5312d8420efb
   DIR parent 75690c808dbf31d459d6e53ecc4c8b1542ed39fe
   URI Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Fri, 30 May 2008 23:03:03 +0100
       
       isfixed implies isfloating
       Diffstat:
         M dwm.c                               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -267,7 +267,7 @@ arrange(void) {
                                        XMoveResizeWindow(dpy, c->win, wx, wy, ww - 2 * c->bw, wh - 2 * c->bw);
                                        c->ismoved = True;
                                }
       -                        else if(!lt->arrange || ismax || c->isfloating)
       +                        else if(!lt->arrange || c->isfloating)
                                        resize(c, c->x, c->y, c->w, c->h, True);
                                c->isbanned = False;
                        }