From ea98b4b0e3b54a545c7af8051af60eeebda6803a Mon Sep 17 00:00:00 2001 From: Christian Spurk Date: Fri, 27 Feb 2009 12:33:24 +0000 Subject: [PATCH] Reduce the restriction on the minimum size of thumbnails from 40 to 1. See 2009-02-27 Christian Spurk * thumbnailer/evince-thumbnailer.c: (main): Reduce the restriction on the minimum size of thumbnails from 40 to 1. See bug #323198. svn path=/trunk/; revision=3499 --- ChangeLog | 7 +++++++ thumbnailer/evince-thumbnailer.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 67e96bae..876cd5af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-02-27 Christian Spurk + + * thumbnailer/evince-thumbnailer.c: (main): + + Reduce the restriction on the minimum size of thumbnails from 40 + to 1. See bug #323198. + 2009-02-27 Carlos Garcia Campos * thumbnailer/evince-thumbnailer.c: (print_usage), (main): diff --git a/thumbnailer/evince-thumbnailer.c b/thumbnailer/evince-thumbnailer.c index da0f5d45..9cc572f3 100644 --- a/thumbnailer/evince-thumbnailer.c +++ b/thumbnailer/evince-thumbnailer.c @@ -180,8 +180,8 @@ main (int argc, char *argv[]) g_option_context_free (context); - if (size < 40) { - g_print ("Size cannot be smaller than 40 pixels\n"); + if (size < 1) { + g_print ("Size cannot be smaller than 1 pixel\n"); return -1; } -- 2.43.0