projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f1fe19b
)
small fix to separate client title from right-most tag
author
Anselm R. Garbe
<arg@10kloc.org>
Fri, 25 Aug 2006 12:46:01 +0000
(14:46 +0200)
committer
Anselm R. Garbe
<arg@10kloc.org>
Fri, 25 Aug 2006 12:46:01 +0000
(14:46 +0200)
draw.c
patch
|
blob
|
history
diff --git
a/draw.c
b/draw.c
index ff6f779dd32633ea1491c5836d2d41d716ba9541..7da24f25f83890313f36b9986dba986f282af259 100644
(file)
--- a/
draw.c
+++ b/
draw.c
@@
-94,7
+94,7
@@
drawall()
void
drawstatus()
{
- static const char *mode[] = { "~", "
=
" };
+ static const char *mode[] = { "~", "
|
" };
int i, x;
dc.x = dc.y = 0;
@@
-114,7
+114,7
@@
drawstatus()
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) {