]> www.fi.muni.cz Git - evince.git/commitdiff
Reduce the restriction on the minimum size of thumbnails from 40 to 1. See
authorChristian Spurk <mail@code.chriki.de>
Fri, 27 Feb 2009 12:33:24 +0000 (12:33 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Fri, 27 Feb 2009 12:33:24 +0000 (12:33 +0000)
2009-02-27   Christian Spurk  <mail@code.chriki.de>

* 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
thumbnailer/evince-thumbnailer.c

index 67e96baebb1ad0befc1102901383a8949fbc31d8..876cd5af1eccfd9facd29dd62fd73888e3aa94aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-02-27   Christian Spurk  <mail@code.chriki.de>
+
+       * 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  <carlosgc@gnome.org>
 
        * thumbnailer/evince-thumbnailer.c: (print_usage), (main):
index da0f5d45ed0ae9bfc6bf844922d00e2a3915e3ea..9cc572f368ce242ab222783281ef010723301460 100644 (file)
@@ -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;
        }