tapplied Sanders patch - dwm - [fork] customized build of dwm, the dynamic window manager
 (HTM) git clone git://src.adamsgaard.dk/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 492c6f10fcf9acf74d84eb3fe005ecf2dd42611a
 (DIR) parent caa7ab536224b0bf4dcd2790a51ead6b7a6cf119
 (HTM) Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Mon, 28 May 2007 15:05:47 +0200
       
       applied Sanders patch
       Diffstat:
         M client.c                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/client.c b/client.c
       t@@ -305,8 +305,8 @@ togglefloating(const char *arg) {
                if(!sel || lt->arrange == floating)
                        return;
                sel->isfloating = !sel->isfloating;
       -        if(sel->isfloating && sel->isfixed)
       -                resize(sel, sel->x, sel->y, sel->minw, sel->minh, True);
       +        if(sel->isfloating)
       +                resize(sel, sel->x, sel->y, sel->w, sel->h, True);
                lt->arrange();
        }