summaryrefslogtreecommitdiff
path: root/src/thumbnail.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-09-07 22:21:09 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-09-07 22:21:09 +0200
commit04690171c47c99e584fe1ae9d5ebed913ac5ba99 (patch)
tree81de163c7264be14666d4e5305a73d6a12e9b78d /src/thumbnail.c
parentf1963a493f82d568befade8d2dc9f601276ac44e (diff)
feh_reload_image: Fix regression of old caching issue (closes #63)
This was broken by the changes allowing --reload to retry ad infinitum. Now force_new is used to decide whether or not to work around the Imlib2 caching issue. Because of this, a few feh_reload_image calls needed to be changed.
Diffstat (limited to 'src/thumbnail.c')
-rw-r--r--src/thumbnail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thumbnail.c b/src/thumbnail.c
index ee8b101..0c8d00a 100644
--- a/src/thumbnail.c
+++ b/src/thumbnail.c
@@ -922,7 +922,7 @@ void feh_thumbnail_show_fullsize(feh_file *thumbfile)
free(thumbwin->file);
thumbwin->file = gib_list_add_front(NULL, thumbfile);
winwidget_rename(thumbwin, s);
- feh_reload_image(thumbwin, 1, 0);
+ feh_reload_image(thumbwin, 1, 1);
}
}