aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/screen.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c
index 9da213d..b7e0a49 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -857,6 +857,8 @@ static void runes_screen_scroll_down(RunesTerm *t, int count)
scr->grid->row_top += count;
}
}
+
+ scr->dirty = 1;
}
static void runes_screen_scroll_up(RunesTerm *t, int count)
@@ -889,6 +891,8 @@ static void runes_screen_scroll_up(RunesTerm *t, int count)
row->wrapped = 0;
}
}
+
+ scr->dirty = 1;
}
static int runes_screen_scroll_region_is_active(RunesTerm *t)