JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
replaced BORDERPX with sel->border in togglemax(), in other places this is not possible.
authorAnselm R. Garbe <arg@suckless.org>
Wed, 30 May 2007 18:49:38 +0000 (20:49 +0200)
committerAnselm R. Garbe <arg@suckless.org>
Wed, 30 May 2007 18:49:38 +0000 (20:49 +0200)
config.mk
layout.c

index de2fb00..f0c3489 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
 # dwm version
 # dwm version
-VERSION = 4.2
+VERSION = 4.3
 
 # Customize below to fit your system
 
 
 # Customize below to fit your system
 
index ecd7a16..f3f8e26 100644 (file)
--- a/layout.c
+++ b/layout.c
@@ -243,7 +243,7 @@ togglemax(const char *arg) {
                sel->ry = sel->y;
                sel->rw = sel->w;
                sel->rh = sel->h;
                sel->ry = sel->y;
                sel->rw = sel->w;
                sel->rh = sel->h;
-               resize(sel, wax, way, waw - 2 * BORDERPX, wah - 2 * BORDERPX, True);
+               resize(sel, wax, way, waw - 2 * sel->border, wah - 2 * sel->border, True);
        }
        else
                resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, True);
        }
        else
                resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, True);