This website works better with JavaScript.
Home
Explore
Help
Sign In
Immanuel
/
sxiv
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix recreation of thumbnail cache file after manual reload
master
Bert Münnich
13 years ago
parent
7177270c10
commit
b410c022a8
2 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
Makefile
+1
-1
thumbs.c
+ 2
- 2
Makefile
View File
@@ -1,4 +1,4 @@
VERSION = git-2012021
2
VERSION = git-2012021
4
CC = gcc
CFLAGS = -ansi -Wall -pedantic -O2
@@ -8,7 +8,7 @@ LIBS = -lX11 -lImlib2 -lgif
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
SRC = commands.c image.c main.c options.c thumbs.c util.c window.c
SRC = commands.c
exif.c
image.c main.c options.c thumbs.c util.c window.c
OBJ = $(SRC:.c=.o)
all: options sxiv
+ 1
- 1
thumbs.c
View File
@@ -271,7 +271,7 @@ bool tns_load(tns_t *tns, int n, const fileinfo_t *file,
imlib_free_image_and_decache();
if (use_cache && !cache_hit)
tns_cache_write(t,
fals
e);
tns_cache_write(t,
tru
e);
tns->dirty = true;
return true;
Write
Preview
Loading…
Cancel
Save