Fixed thumbnail creation

This commit is contained in:
Bert 2011-02-16 16:53:35 +01:00
parent 7b49740613
commit 7e2c85b04c
1 changed files with 3 additions and 1 deletions

4
main.c
View File

@ -123,8 +123,10 @@ int main(int argc, char **argv) {
if (options->thumbnails) {
thumbs = (thumb_t*) s_malloc(filecnt * sizeof(thumb_t));
for (i = 0; i < filecnt; ++i)
for (i = 0; i < filecnt; ++i) {
thumbs[i].pm = win_create_pixmap(&win);
img_load_thumb(&thumbs[i], filenames[i]);
}
}
load_image();