diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2020-02-22 16:06:36 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2020-02-22 16:06:36 -0800 |
| commit | 6006e21d9576266f7909df4bb3d9bb9d213f5424 (patch) | |
| tree | 0dc0a3e638b3a48fe2c5dde6bf076e3f6597f4a0 | |
| parent | 96360428586f3d5722bb9fdc9baf1b1cc0b5dbc6 (diff) | |
Fixed column separator width
| -rw-r--r-- | bb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -783,7 +783,7 @@ void render(bb_t *bb) if (!title) title = ""; move_cursor(tty_out, x, 1); if (col > 0) { - fputs("│\033[K", tty_out); + fputs("┃\033[K", tty_out); x += 1; } const char *indicator = " "; |
