summaryrefslogtreecommitdiffstats
path: root/screen-write.c
diff options
context:
space:
mode:
authornicm <nicm>2020-05-25 18:55:36 +0000
committernicm <nicm>2020-05-25 18:55:36 +0000
commit35779d655d7eec4b904eeb3a670bbef02aba016d (patch)
treeedc6f67bbdb3bb30a501db25577aa727757e6c65 /screen-write.c
parent49ec0742713260f0ba0044701032373409d44984 (diff)
Fix definition of padding cells so they are not extended cells.
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 062a2929..68c3aa76 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, 0, 8, 8
+ { { 0 }, 0, 0, 0 }, 0, GRID_FLAG_PADDING, 8, 8, 0
};
struct screen_write_collect_item {