diff options
author | Bert Münnich <ber.t@posteo.de> | 2014-08-17 16:31:16 +0200 |
---|---|---|
committer | Bert Münnich <ber.t@posteo.de> | 2014-08-17 16:31:16 +0200 |
commit | 50652f63d99c9ff540fac4c72b0422660bdb3dab (patch) | |
tree | 130548a99920158c5a9cc5a0f417f50c1cfb9c0f | |
parent | e49d38d6f947b11570627b7354641e03f9200cef (diff) |
Full redraw when removing files during thumbnail reloading; fixes issue #164
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | main.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -VERSION = git-20140816 +VERSION = git-20140817 PREFIX = /usr/local MANPREFIX = $(PREFIX)/share/man @@ -684,6 +684,8 @@ void run(void) tns.cnt++; } else { remove_file(tns.loadnext, false); + if (reload) + tns.dirty = true; } while (tns.loadnext < filecnt && tns.thumbs[tns.loadnext].loaded) tns.loadnext++; |