Fixed column separator width

This commit is contained in:
Bruce Hill 2020-02-22 16:06:36 -08:00
parent 9636042858
commit 6006e21d95

2
bb.c
View File

@ -783,7 +783,7 @@ void render(bb_t *bb)
if (!title) title = ""; if (!title) title = "";
move_cursor(tty_out, x, 1); move_cursor(tty_out, x, 1);
if (col > 0) { if (col > 0) {
fputs("\033[K", tty_out); fputs("\033[K", tty_out);
x += 1; x += 1;
} }
const char *indicator = " "; const char *indicator = " ";