aboutsummaryrefslogtreecommitdiffstats
path: root/src/pty-unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pty-unix.c')
-rw-r--r--src/pty-unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pty-unix.c b/src/pty-unix.c
index 3faeb7f..59636e7 100644
--- a/src/pty-unix.c
+++ b/src/pty-unix.c
@@ -109,8 +109,8 @@ 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;
+ if (t->w.row_visible_offset != 0) {
+ t->w.row_visible_offset = 0;
t->scr.dirty = 1;
runes_window_backend_request_flush(t);
}