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/slideshow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/slideshow.c') diff --git a/src/slideshow.c b/src/slideshow.c index a75affd..497b9bc 100644 --- a/src/slideshow.c +++ b/src/slideshow.c @@ -163,7 +163,7 @@ void feh_reload_image(winwidget w, int resize, int force_new) w->im_w = gib_imlib_image_get_width(w->im); w->im_h = gib_imlib_image_get_height(w->im); } - winwidget_render_image(w, resize, 1); + winwidget_render_image(w, resize, 0); winwidget_rename(w, title); free(title); @@ -264,7 +264,7 @@ void slideshow_change_image(winwidget winwid, int change) winwidget_reset_image(winwid); winwid->im_w = gib_imlib_image_get_width(winwid->im); winwid->im_h = gib_imlib_image_get_height(winwid->im); - winwidget_render_image(winwid, 1, 1); + winwidget_render_image(winwid, 1, 0); s = slideshow_create_name(FEH_FILE(current_file->data)); winwidget_rename(winwid, s); -- cgit v1.2.3