about summary refs log tree commit diff stats
path: root/bar.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-14 17:43:56 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-14 17:43:56 +0200
commite7fa504c3e095db65853afd39d2d1324d439dcf4 (patch)
tree54359cd50c69cc580a963eb53ffee8f43f214661 /bar.c
parent5b44976a2d8bdd1397727663ce019374d6b2730a (diff)
downloaddwm-e7fa504c3e095db65853afd39d2d1324d439dcf4.tar.gz
removed a bunch of lines through swap removal
Diffstat (limited to 'bar.c')
-rw-r--r--bar.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/bar.c b/bar.c
index ea4b946..611c669 100644
--- a/bar.c
+++ b/bar.c
@@ -25,30 +25,22 @@ draw_bar()
 	int i;
 	dc.x = dc.y = 0;
 	dc.w = bw;
-	drawtext(NULL, False);
+	drawtext(NULL, False, False);
 
 	dc.w = 0;
 	for(i = 0; i < TLast; i++) {
 		dc.x += dc.w;
 		dc.w = textw(tags[i]) + dc.font.height;
-		if(i == tsel) {
-			swap((void **)&dc.fg, (void **)&dc.bg);
-			drawtext(tags[i], True);
-			swap((void **)&dc.fg, (void **)&dc.bg);
-		}
-		else
-			drawtext(tags[i], True);
+		drawtext(tags[i], i == tsel, True);
 	}
 	if(sel) {
-		swap((void **)&dc.fg, (void **)&dc.bg);
 		dc.x += dc.w;
 		dc.w = textw(sel->name) + dc.font.height;
-		drawtext(sel->name, True);
-		swap((void **)&dc.fg, (void **)&dc.bg);
+		drawtext(sel->name, True, True);
 	}
 	dc.w = textw(stext) + dc.font.height;
 	dc.x = bx + bw - dc.w;
-	drawtext(stext, False);
+	drawtext(stext, False, False);
 	XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
 	XFlush(dpy);
 }