From ea98b4b0e3b54a545c7af8051af60eeebda6803a Mon Sep 17 00:00:00 2001 From: Christian Spurk Date: Fri, 27 Feb 2009 12:33:24 +0000 Subject: 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 --- (limited to 'thumbnailer') diff --git a/thumbnailer/evince-thumbnailer.c b/thumbnailer/evince-thumbnailer.c index da0f5d4..9cc572f 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; } -- cgit v0.9.1