From: Christian Spurk Date: Fri, 27 Feb 2009 12:33:24 +0000 (+0000) Subject: Reduce the restriction on the minimum size of thumbnails from 40 to 1. See X-Git-Tag: EVINCE_2_25_92~13 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=ea98b4b0e3b54a545c7af8051af60eeebda6803a;p=evince.git 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 --- 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; }