diff src/rcfile.c @ 1060:1e2de04c6fc4

added option to use exif thumbnails - it requires exiv2 0.18 or the current svn - it is disabled by default because the exif thumbnails may be outdated if the image was edited
author nadvornik
date Sat, 11 Oct 2008 20:19:48 +0000
parents 1646720364cf
children c45cc5cf3c4d
line wrap: on
line diff
--- a/src/rcfile.c	Tue Oct 07 19:34:11 2008 +0000
+++ b/src/rcfile.c	Sat Oct 11 20:19:48 2008 +0000
@@ -403,6 +403,7 @@
 	WRITE_BOOL(thumbnails.use_xvpics);
 	WRITE_BOOL(thumbnails.spec_standard);
 	WRITE_UINT(thumbnails.quality);
+	WRITE_BOOL(thumbnails.use_exif);
 
 
 	WRITE_SUBTITLE("File sorting Options");
@@ -776,6 +777,7 @@
 		READ_BOOL(thumbnails.use_xvpics);
 		READ_BOOL(thumbnails.spec_standard);
 		READ_UINT_CLAMP(thumbnails.quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER);
+		READ_BOOL(thumbnails.use_exif);
 
 		/* file sorting options */
 		READ_UINT(file_sort.method);