diff options
| author | Bert Münnich <ber.t@gmx.com> | 2011-11-05 13:11:50 +0100 | 
|---|---|---|
| committer | Bert Münnich <ber.t@gmx.com> | 2011-11-05 13:11:50 +0100 | 
| commit | 5034792948e181de5f1f19737cccc394116a82b4 (patch) | |
| tree | c6b88def2bf0eb7ccc7edb9ccb81e999cd0c9b98 | |
| parent | 71a7940d74459c8a575100f93fe43e204413c2db (diff) | |
Thumbnails only get scaled down, fixed issue #27
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | thumbs.c | 1 | 
2 files changed, 2 insertions, 1 deletions
| @@ -1,4 +1,4 @@ -VERSION = git-20111101 +VERSION = git-20111105  CC      = gcc  CFLAGS  = -ansi -Wall -pedantic -O2 @@ -267,6 +267,7 @@ bool tns_load(tns_t *tns, int n, const fileinfo_t *file,  	zw = (float) THUMB_SIZE / (float) w;  	zh = (float) THUMB_SIZE / (float) h;  	z = MIN(zw, zh); +	z = MIN(z, 1.0);  	t->w = z * w;  	t->h = z * h; | 
