aboutsummaryrefslogtreecommitdiff
path: root/bb.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2020-02-22 16:06:36 -0800
committerBruce Hill <bruce@bruce-hill.com>2020-02-22 16:06:36 -0800
commit6006e21d9576266f7909df4bb3d9bb9d213f5424 (patch)
tree0dc0a3e638b3a48fe2c5dde6bf076e3f6597f4a0 /bb.c
parent96360428586f3d5722bb9fdc9baf1b1cc0b5dbc6 (diff)
Fixed column separator width
Diffstat (limited to 'bb.c')
-rw-r--r--bb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bb.c b/bb.c
index fad458f..dc48729 100644
--- a/bb.c
+++ b/bb.c
@@ -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 = " ";