small fix of a corner case - dwm - My fork of dwm (frankenstein's monster)
(HTM) git clone git://git.drkhsh.at/dwm.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit ad0da9a571ecbdfa8fe0a397185b314f5654f094
(DIR) parent 6646468125eb4822d8f96b2b587c66c9b1d12eec
(HTM) Author: Anselm R. Garbe <arg@10kloc.org>
Date: Fri, 29 Sep 2006 16:54:15 +0200
small fix of a corner case
Diffstat:
M view.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/view.c b/view.c
@@ -213,7 +213,7 @@ dotile(Arg *arg) {
c->x = sx + master + (i - 1) * tw;
c->y = sy + bh;
if(i + 1 == n)
- c->w = sx + stackw - c->x - 2 * BORDERPX;
+ c->w = sw - c->x - 2 * BORDERPX;
}
break;
}