From 136e87bbc0d563b33d376ae9d91cab42db8c8c4c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 20 Apr 2014 21:56:08 -0400 Subject: missed a couple that should be bgdefault --- display.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/display.c b/display.c index 1a0680f..16be778 100644 --- a/display.c +++ b/display.c @@ -462,7 +462,7 @@ void runes_display_scroll_up(RunesTerm *t, int rows) cairo_pop_group_to_source(t->cr); cairo_paint(t->cr); runes_display_paint_rectangle( - t, t->cr, t->colors[0], 0, t->scroll_top, t->cols, rows); + t, t->cr, t->bgdefault, 0, t->scroll_top, t->cols, rows); cairo_restore(t->cr); } @@ -579,6 +579,6 @@ static void runes_display_scroll_down(RunesTerm *t, int rows) cairo_pop_group_to_source(t->cr); cairo_paint(t->cr); runes_display_paint_rectangle( - t, t->cr, t->colors[0], 0, t->scroll_bottom + 1 - rows, t->cols, rows); + t, t->cr, t->bgdefault, 0, t->scroll_bottom + 1 - rows, t->cols, rows); cairo_restore(t->cr); } -- cgit v1.2.3-54-g00ecf