aboutsummaryrefslogtreecommitdiffstats
path: root/src/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/display.c')
-rw-r--r--src/display.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/display.c b/src/display.c
index 524dd0e..e8483f4 100644
--- a/src/display.c
+++ b/src/display.c
@@ -42,6 +42,9 @@ void runes_display_set_window_size(RunesTerm *t)
t->rows = t->ypixel / t->fonty;
t->cols = t->xpixel / t->fontx;
+ t->scroll_top = 0;
+ t->scroll_bottom = t->rows - 1;
+
old_cr = t->cr;
/* XXX this should really use cairo_surface_create_similar_image, but when