about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--bar.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/bar.c b/bar.c
index 953ac6b..3027bc2 100644
--- a/bar.c
+++ b/bar.c
@@ -22,16 +22,15 @@ barclick(XButtonPressedEvent *e)
 void
 draw_bar()
 {
-	int i;
+	int i, modw;
 	char *mode = arrange == tiling ? "#" : "~";
 
 	dc.x = dc.y = 0;
 	dc.w = bw;
 	drawtext(NULL, False, False);
 
-	dc.w = textw(mode) + dc.font.height;
-	drawtext(mode, True, True);
-
+	modw = textw(mode) + dc.font.height;
+	dc.w = 0;
 	for(i = 0; i < TLast; i++) {
 		dc.x += dc.w;
 		dc.w = textw(tags[i]) + dc.font.height;
@@ -43,8 +42,13 @@ draw_bar()
 		drawtext(sel->name, True, True);
 	}
 	dc.w = textw(stext) + dc.font.height;
-	dc.x = bx + bw - dc.w;
+	dc.x = bx + bw - dc.w - modw;
 	drawtext(stext, False, False);
+
+	dc.x = bx + bw - modw;
+	dc.w = modw;
+	drawtext(mode, True, True);
+
 	XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
 	XFlush(dpy);
 }
52629c1c70f91ac117e488e04a73bf9e91ab8f9'>e52629c1 ^
e7930f43 ^
972da7ba ^
3db19975 ^
b3d031a9 ^


ab41c776 ^

b3d031a9 ^
916c2390 ^

3db19975 ^
84a22ae0 ^
b3d031a9 ^
972da7ba ^

e7930f43 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26