Mercurial > dwm-meillo
changeset 355:f9543a4af9e5
small fix to separate client title from right-most tag
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Fri, 25 Aug 2006 14:46:01 +0200 (2006-08-25) |
parents | bb780add36c6 |
children | c2a65784cb71 |
files | draw.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/draw.c Fri Aug 25 13:02:07 2006 +0200 +++ b/draw.c Fri Aug 25 14:46:01 2006 +0200 @@ -94,7 +94,7 @@ void drawstatus() { - static const char *mode[] = { "~", "=" }; + static const char *mode[] = { "~", "|" }; int i, x; dc.x = dc.y = 0; @@ -114,7 +114,7 @@ else drawtext(tags[i], dc.norm, sel && sel->tags[i]); } - x = dc.x + dc.w; + x = dc.x + dc.w + 1; dc.w = textw(stext); dc.x = bx + bw - dc.w; if(dc.x < x) {