Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/thumbnailer/evince-thumbnailer.c
diff options
context:
space:
mode:
authorChristian Spurk <mail@code.chriki.de>2009-02-27 12:33:24 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2009-02-27 12:33:24 (GMT)
commitea98b4b0e3b54a545c7af8051af60eeebda6803a (patch)
treefd0540c3bba065d9ac3aa823a3fb18f780ccb61a /thumbnailer/evince-thumbnailer.c
parentfe69e587ffdd60b3cc23f4258c61670e8021605d (diff)
Reduce the restriction on the minimum size of thumbnails from 40 to 1. See
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
Diffstat (limited to 'thumbnailer/evince-thumbnailer.c')
-rw-r--r--thumbnailer/evince-thumbnailer.c4
1 files changed, 2 insertions, 2 deletions
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;
}