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

1
grid.c
View File

@ -541,7 +541,6 @@ grid_set_cell(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc)
gl->cellused = px + 1;
gce = &gl->celldata[px];
if (gc->flags & GRID_FLAG_PADDING) log_debug("!!! padding %d\n", grid_need_extended_cell(gce, gc));
if (grid_need_extended_cell(gce, gc))
grid_extended_cell(gl, gce, gc);
else