small fix to separate client title from right-most tag
9f35cc52
1 file(s) · +2 −2
| 94 | 94 | void |
|
| 95 | 95 | drawstatus() |
|
| 96 | 96 | { |
|
| 97 | - | static const char *mode[] = { "~", "=" }; |
|
| 97 | + | static const char *mode[] = { "~", "|" }; |
|
| 98 | 98 | int i, x; |
|
| 99 | 99 | ||
| 100 | 100 | dc.x = dc.y = 0; |
|
| 114 | 114 | else |
|
| 115 | 115 | drawtext(tags[i], dc.norm, sel && sel->tags[i]); |
|
| 116 | 116 | } |
|
| 117 | - | x = dc.x + dc.w; |
|
| 117 | + | x = dc.x + dc.w + 1; |
|
| 118 | 118 | dc.w = textw(stext); |
|
| 119 | 119 | dc.x = bx + bw - dc.w; |
|
| 120 | 120 | if(dc.x < x) { |
|