t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 042297b27b64aa1ff3a7da12f5b07268ba2f11eb
   DIR parent a5cb80b86cdedb8cd1f3a02de47f204bd174f649
   URI Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Wed, 31 Jan 2007 20:08:55 +0100
       
       applied Sander's drop_bh patch
       Diffstat:
         M view.c                              |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/view.c b/view.c
       t@@ -98,11 +98,11 @@ dotile(void) {
                                else {  /* tile window */
                                        c->x += mw;
                                        c->w = tw - 2 * BORDERPX;
       -                                if(th - 2 * BORDERPX > bh) {
       +                                if(th > 2 * BORDERPX) {
                                                c->y += (i - nmaster) * th;
                                                c->h = th - 2 * BORDERPX;
                                        }
       -                                else /* fallback if th - 2 * BORDERPX < bh */
       +                                else /* fallback if th <= 2 * BORDERPX */
                                                c->h = wah - 2 * BORDERPX;
                                }
                                resize(c, False);
       t@@ -150,7 +150,7 @@ focusprev(Arg *arg) {
        void
        incnmaster(Arg *arg) {
                if((arrange == dofloat) || (nmaster + arg->i < 1)
       -                || (wah / (nmaster + arg->i) - 2 * BORDERPX < bh))
       +                || (wah / (nmaster + arg->i) <= 2 * BORDERPX))
                        return;
                nmaster += arg->i;
                if(sel)
       t@@ -174,8 +174,8 @@ resizemaster(Arg *arg) {
                if(arg->i == 0)
                        master = MASTER;
                else {
       -                if(waw * (master + arg->i) / 1000 > waw - bh - 2 * BORDERPX
       -                        || waw * (master + arg->i) / 1000 < bh + 2 * BORDERPX)
       +                if(waw * (master + arg->i) / 1000 >= waw - 2 * BORDERPX
       +                        || waw * (master + arg->i) / 1000 <= 2 * BORDERPX)
                                return;
                        master += arg->i;
                }