diff options
author | nicm <nicm> | 2019-05-28 18:53:36 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-28 18:53:36 +0000 |
commit | 580cd16f4c3474d7cae867b9b24f01665a268e9d (patch) | |
tree | 325942361ea1679188846b49610f932ab46ae158 /status.c | |
parent | 4382538e4bac2849262710c447e4b630e7f34bd7 (diff) | |
download | rtmux-580cd16f4c3474d7cae867b9b24f01665a268e9d.tar.gz rtmux-580cd16f4c3474d7cae867b9b24f01665a268e9d.tar.bz2 rtmux-580cd16f4c3474d7cae867b9b24f01665a268e9d.zip |
Redraw status line if size changes, GitHub issue 1762. Also fix length
of target buffer when pasting into status line.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -348,10 +348,8 @@ status_redraw(struct client *c) /* Resize the target screen. */ if (screen_size_x(&sl->screen) != width || screen_size_y(&sl->screen) != lines) { - if (screen_size_x(&sl->screen) != width) - force = 1; screen_resize(&sl->screen, width, lines, 0); - changed = 1; + changed = force = 1; } screen_write_start(&ctx, NULL, &sl->screen); @@ -865,7 +863,7 @@ status_prompt_paste(struct client *c) if ((pb = paste_get_top(NULL)) == NULL) return (0); bufdata = paste_buffer_data(pb, &bufsize); - ud = xreallocarray(NULL, bufsize, sizeof *ud); + ud = xreallocarray(NULL, bufsize + 1, sizeof *ud); udp = ud; for (i = 0; i != bufsize; /* nothing */) { more = utf8_open(udp, bufdata[i]); |