tfix - 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 6229ed20c2af107305eccb8b536afd8620443647
 (DIR) parent 940240e5e6f16b292b2f6f37a05282617ce10fe9
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Sat,  5 Apr 2008 19:04:53 +0100
       
       fix
       Diffstat:
         M dwm.c                               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       t@@ -1068,7 +1068,7 @@ monocle(void) {
                Client *c;
        
                for(c = clients; c; c = c->next)
       -                if((lt->isfloating || !c->floating) &&  isvisible(c))
       +                if((lt->isfloating || !c->isfloating) &&  isvisible(c))
                                resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS);
        }