diff options
author | nicm <nicm> | 2020-04-18 06:15:07 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-18 06:15:07 +0000 |
commit | d94bdf7420eb6d0ef88783a35db2c592a3fccec0 (patch) | |
tree | 28e41a1116bfb1442a6cd405ad013564fb95d463 /tty.c | |
parent | 5289d4ed13e18fa4430aba27af0d525d2f76fc30 (diff) | |
download | rtmux-d94bdf7420eb6d0ef88783a35db2c592a3fccec0.tar.gz rtmux-d94bdf7420eb6d0ef88783a35db2c592a3fccec0.tar.bz2 rtmux-d94bdf7420eb6d0ef88783a35db2c592a3fccec0.zip |
Revert previous, there is still a problem.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 16 |
1 files changed, 2 insertions, 14 deletions
@@ -1438,19 +1438,15 @@ tty_draw_line(struct tty *tty, struct window_pane *wp, struct screen *s, void tty_sync_start(struct tty *tty) { - if ((~tty->flags & TTY_SYNCING) && (tty_get_flags(tty) & TERM_SYNC)) { + if (tty_get_flags(tty) & TERM_SYNC) tty_puts(tty, "\033P=1s\033\\"); - tty->flags |= TTY_SYNCING; - } } void tty_sync_end(struct tty *tty) { - if (tty_get_flags(tty) & TERM_SYNC) { + if (tty_get_flags(tty) & TERM_SYNC) tty_puts(tty, "\033P=2s\033\\"); - tty->flags &= ~TTY_SYNCING; - } } static int @@ -1484,14 +1480,6 @@ tty_write(void (*cmdfn)(struct tty *, const struct tty_ctx *), TAILQ_FOREACH(c, &clients, entry) { if (!tty_client_ready(c, wp)) continue; - if (c->flags & CLIENT_REDRAWPANES) { - /* - * Redraw is already deferred to redraw another pane - - * redraw this one also when that happens. - */ - wp->flags |= PANE_REDRAW; - break; - } ctx->bigger = tty_window_offset(&c->tty, &ctx->ox, &ctx->oy, &ctx->sx, &ctx->sy); |