From d0b8f5340eb17e76769699caafdb0bd87bcf816b Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 21 Apr 2020 06:32:40 +0000 Subject: Do not clear client pane redraw flags until the redraw actually happens. --- tty.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tty.c') diff --git a/tty.c b/tty.c index 556931da..98a557b5 100644 --- a/tty.c +++ b/tty.c @@ -1491,6 +1491,7 @@ tty_write(void (*cmdfn)(struct tty *, const struct tty_ctx *), * Redraw is already deferred to redraw another pane - * redraw this one also when that happens. */ + log_debug("adding %%%u to deferred redraw", wp->id); wp->flags |= PANE_REDRAW; break; } -- cgit