Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--thumbnailer/evince-thumbnailer.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 67e96ba..876cd5a 100644
--- 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):
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;
}