Make padding cell a valid character.

This commit is contained in:
nicm
2020-05-27 06:23:23 +00:00
parent 2ced370bee
commit f336599a3a
2 changed files with 1 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ static const struct grid_cell *screen_write_combine(struct screen_write_ctx *,
const struct utf8_data *, u_int *);
static const struct grid_cell screen_write_pad_cell = {
{ { 0 }, 0, 0, 0 }, 0, GRID_FLAG_PADDING, 8, 8, 0
{ { ' ' }, 0, 1, 1 }, 0, GRID_FLAG_PADDING, 8, 8, 0
};
struct screen_write_collect_item {