Преглед изворни кода

small fix to separate client title from right-most tag

Anselm R. Garbe пре 19 година
родитељ
комит
9f35cc52fe
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      draw.c

+ 2 - 2
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) {