From c2358c1b63d910b287aaaf5f770b79786b48a929 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 31 Aug 2007 06:21:38 +0000 Subject: 2007-08-31 mcrha Fix for bug #377763 svn path=/trunk/; revision=34145 --- mail/em-icon-stream.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'mail/em-icon-stream.c') diff --git a/mail/em-icon-stream.c b/mail/em-icon-stream.c index 538133be06..c1125b8877 100644 --- a/mail/em-icon-stream.c +++ b/mail/em-icon-stream.c @@ -180,6 +180,13 @@ emis_fit(GdkPixbuf *pixbuf, int maxwidth, int maxheight, int *scale) height = maxheight; } + /* check if we don't want to scale down too much, if so, do 1 pixel width/height */ + if (width <= 0) + width = 1; + + if (height <= 0) + height = 1; + #ifdef HAVE_LIBGNOMEUI_GNOME_THUMBNAIL_H mini = gnome_thumbnail_scale_down_pixbuf(pixbuf, width, height); #else -- cgit