Fix thumbnails

svn path=/trunk/netsurf/; revision=13469
This commit is contained in:
Chris Young 2012-02-25 19:13:41 +00:00
parent 79c5485e27
commit 6696f7d160
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ bool thumbnail_create(hlcache_handle *content, struct bitmap *bitmap,
.plot = &amiplot
};
plot_width = MIN(content_get_width(content), 1024);
plot_width = MIN(content_get_width(content), option_redraw_tile_size);
plot_height = ((plot_width * bitmap->height) + (bitmap->width / 2)) /
bitmap->width;