summaryrefslogtreecommitdiffstats
path: root/screen-write.c
diff options
context:
space:
mode:
authornicm <nicm>2020-05-27 06:23:23 +0000
committernicm <nicm>2020-05-27 06:23:23 +0000
commitf336599a3a0172924174c60c7411eea9b93e5544 (patch)
tree3dac20b49cfc921932c02a2cb4b6c8306aa6b793 /screen-write.c
parent2ced370bee234e00c3ece3b4110dcb71067df846 (diff)
Make padding cell a valid character.
Diffstat (limited to 'screen-write.c')
-rw-r--r--screen-write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-write.c b/screen-write.c
index 68c3aa76..33e3f975 100644
--- a/screen-write.c
+++ b/screen-write.c
@@ -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 {