dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit f833d109d1a7190344899aee1696bcbcd7b7ee71
parent 7225c99903c1a7ada44d575251e3aca64625a172
Author: Anselm R. Garbe <arg@10kloc.org>
Date:   Fri, 29 Sep 2006 17:15:05 +0200

fixed small offset issue
Diffstat:
Mview.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/view.c b/view.c
@@ -194,7 +194,7 @@ dotile(Arg *arg) {
                     break;
                 case StackBottom:
                     c->x = sx;
-                    c->y = sy + master;
+                    c->y = sy + master + bh;
                     break;
                 case StackRight:
                     c->x = sx + master;