aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm R. Garbe <[email protected]>2006-09-29 17:15:05 +0200
committerAnselm R. Garbe <[email protected]>2006-09-29 17:15:05 +0200
commitf833d109d1a7190344899aee1696bcbcd7b7ee71 (patch)
treec058022ffb5a9e6ee94114cc50f3306e1d1a7f05
parentfixed the z-layer issue described on mailinglist (diff)
downloadseiwm-f833d109d1a7190344899aee1696bcbcd7b7ee71.tar.xz
seiwm-f833d109d1a7190344899aee1696bcbcd7b7ee71.zip
fixed small offset issue
-rw-r--r--view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.c b/view.c
index a3b2029..72e32c7 100644
--- 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;