dwm-meillo
changeset 510:0dfa6b752aed
small fix of a corner case
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Fri, 29 Sep 2006 16:54:15 +0200 |
parents | 9dcc64d8a19e |
children | 1599c953647b |
files | view.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/view.c Fri Sep 29 16:44:02 2006 +0200 1.2 +++ b/view.c Fri Sep 29 16:54:15 2006 +0200 1.3 @@ -213,7 +213,7 @@ 1.4 c->x = sx + master + (i - 1) * tw; 1.5 c->y = sy + bh; 1.6 if(i + 1 == n) 1.7 - c->w = sx + stackw - c->x - 2 * BORDERPX; 1.8 + c->w = sw - c->x - 2 * BORDERPX; 1.9 } 1.10 break; 1.11 }