diff options
author | nicm <nicm> | 2020-04-20 14:59:31 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-20 14:59:31 +0000 |
commit | 2083a6ea2050fb211eab3da0df0ff5a40b4973b4 (patch) | |
tree | 48550eab5ba7e22d2b0817d6a164935f09eea5ad /screen-redraw.c | |
parent | 135bb1edeeab3faae8001100aa7c173be9aa91e1 (diff) | |
download | rtmux-2083a6ea2050fb211eab3da0df0ff5a40b4973b4.tar.gz rtmux-2083a6ea2050fb211eab3da0df0ff5a40b4973b4.tar.bz2 rtmux-2083a6ea2050fb211eab3da0df0ff5a40b4973b4.zip |
Change how sync works to always send the end sequence after all output
is done when we are returning to the event loop (since we always move
the cursor at that point). Also a man fix from jmc.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r-- | screen-redraw.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/screen-redraw.c b/screen-redraw.c index c9e70590..8e74fe97 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -458,7 +458,6 @@ screen_redraw_screen(struct client *c) } tty_reset(&c->tty); - tty_sync_end(&c->tty); } /* Redraw a single pane. */ @@ -476,7 +475,6 @@ screen_redraw_pane(struct client *c, struct window_pane *wp) screen_redraw_draw_pane(&ctx, wp); tty_reset(&c->tty); - tty_sync_end(&c->tty); } /* Draw a border cell. */ |