diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-04-12 16:35:56 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-04-12 16:35:56 +0200 |
commit | 1413ec25f44075de07e7e64a0d8d3bd6fa989966 (patch) | |
tree | fa4543a1e056518861c164591ac318749155ddd6 /src/thumbnail.c | |
parent | f8270763d6eb37e944999aa30fb648e564353a46 (diff) |
Handle no-longer-valid files in inotify-based auto-reload
Diffstat (limited to 'src/thumbnail.c')
-rw-r--r-- | src/thumbnail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thumbnail.c b/src/thumbnail.c index 5197618..79109f4 100644 --- a/src/thumbnail.c +++ b/src/thumbnail.c @@ -796,7 +796,7 @@ void feh_thumbnail_show_fullsize(feh_file *thumbfile) #ifdef HAVE_INOTIFY winwidget_inotify_remove(thumbwin); #endif - feh_reload_image(thumbwin, 1, 1); + feh_reload_image(thumbwin, 1, 0); #ifdef HAVE_INOTIFY winwidget_inotify_add(thumbwin, thumbfile); #endif |