commit 3e972ec84d03b71b032aada7a1c14987baea0830
parent b5159dfd2f552696b049b95e0d368a2c33a1002a
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Wed, 23 Aug 2006 11:33:50 +0200
tags appear in the left again
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/draw.c b/draw.c
@@ -149,17 +149,17 @@ drawtitle(Client *c)
XSetWindowBorder(dpy, c->win, dc.bg);
XMapWindow(dpy, c->title);
- dc.y = dc.w = 0;
- dc.x = c->tw;
+ dc.x = dc.y = 0;
+ dc.w = 0;
for(i = 0; i < ntags; i++) {
if(c->tags[i]) {
+ dc.x += dc.w;
dc.w = textw(tags[i]);
- dc.x -= dc.w;
drawtext(tags[i], !istile);
}
}
- dc.w = dc.x;
- dc.x = 0;
+ dc.x += dc.w;
+ dc.w = c->tw - dc.x;
drawtext(c->name, !istile);
XCopyArea(dpy, dc.drawable, c->title, dc.gc, 0, 0, c->tw, c->th, 0, 0);
XSync(dpy, False);