t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit d939f301fa5ee472f2b089496b5e873ec155fa8e
   DIR parent 8c4623da80af2e25e3f0d15f56598624f4f37d5d
   URI Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Fri,  5 Jan 2007 15:16:39 +0100
       
       adding some prevention that master clients get smaller than bh
       Diffstat:
         M view.c                              |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/view.c b/view.c
       t@@ -192,9 +192,10 @@ focusprev(Arg *arg) {
        
        void
        incnmaster(Arg *arg) {
       -        if(nmaster + arg->i < 1)
       +        if(nmaster + arg->i < 1 || (wah / (nmaster + arg->i) < bh))
                        return;
                nmaster += arg->i;
       +
                arrange();
        }