From 56dec873222e8881847ebcb246eaf67d69e4e86a Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 21 Mar 2011 20:23:33 +0100 Subject: Add method to forcefully disable antialiasing (closes GH-17) --- src/thumbnail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/thumbnail.c') diff --git a/src/thumbnail.c b/src/thumbnail.c index 17605a9..ca5c387 100644 --- a/src/thumbnail.c +++ b/src/thumbnail.c @@ -364,7 +364,7 @@ void init_thumbnail_mode(void) if (opt.display) { /* thumb_counter is unsigned, so no need to catch overflows */ if (++thumb_counter == opt.thumb_redraw) { - winwidget_render_image(winwid, 0, 0); + winwidget_render_image(winwid, 0, 1); thumb_counter = 0; } if (!feh_main_iteration(0)) @@ -373,7 +373,7 @@ void init_thumbnail_mode(void) } if (thumb_counter != 0) - winwidget_render_image(winwid, 0, 0); + winwidget_render_image(winwid, 0, 1); if (opt.verbose) fprintf(stdout, "\n"); -- cgit v1.2.3