diff src/rcfile.c @ 594:4cfce4ed35e0

Use a dedicated option to enable keywords and comment saving as XMP tags in image's files. This new option is named "save_metadata_in_image_file" in configuration file. User can toggle it through Preferences > Advanced > Miscellaneous > Store keywords and comments as XMP tags in image files. Description of enable_metadata_dirs was modified as an attempt to improve clarity.
author zas_
date Tue, 06 May 2008 12:31:23 +0000
parents 905688aa2317
children 0b203af63dbf
line wrap: on
line diff
--- a/src/rcfile.c	Tue May 06 12:03:39 2008 +0000
+++ b/src/rcfile.c	Tue May 06 12:31:23 2008 +0000
@@ -314,6 +314,7 @@
 
 	WRITE_BOOL(progressive_key_scrolling);
 	WRITE_BOOL(enable_metadata_dirs);
+	WRITE_BOOL(save_metadata_in_image_file);
 
 	WRITE_INT(duplicates_similarity_threshold);
 	WRITE_SEPARATOR();
@@ -625,6 +626,7 @@
 		READ_BOOL(progressive_key_scrolling);
 
 		READ_BOOL(enable_metadata_dirs);
+		READ_BOOL(save_metadata_in_image_file);
 
 		READ_BOOL(mousewheel_scrolls);