aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pty-unix.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pty-unix.c b/src/pty-unix.c
index 38afef1..3faeb7f 100644
--- a/src/pty-unix.c
+++ b/src/pty-unix.c
@@ -109,6 +109,11 @@ void runes_pty_backend_set_window_size(RunesTerm *t)
void runes_pty_backend_write(RunesTerm *t, char *buf, size_t len)
{
write(t->pty.master, buf, len);
+ if (t->scr.row_visible_offset != 0) {
+ t->scr.row_visible_offset = 0;
+ t->scr.dirty = 1;
+ runes_window_backend_request_flush(t);
+ }
}
void runes_pty_backend_request_close(RunesTerm *t)