diff options
| author | Anselm R. Garbe <[email protected]> | 2006-09-29 17:15:05 +0200 |
|---|---|---|
| committer | Anselm R. Garbe <[email protected]> | 2006-09-29 17:15:05 +0200 |
| commit | f833d109d1a7190344899aee1696bcbcd7b7ee71 (patch) | |
| tree | c058022ffb5a9e6ee94114cc50f3306e1d1a7f05 | |
| parent | fixed the z-layer issue described on mailinglist (diff) | |
| download | seiwm-f833d109d1a7190344899aee1696bcbcd7b7ee71.tar.xz seiwm-f833d109d1a7190344899aee1696bcbcd7b7ee71.zip | |
fixed small offset issue
| -rw-r--r-- | view.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |