diff src/rcfile.c @ 14:25335c62cd9b

##### Note: GQview CVS on sourceforge is not always up to date, please use ##### ##### an offical release when making enhancements and translation updates. ##### Thu Mar 3 01:16:23 2005 John Ellis <johne@verizon.net> * pan-view.c: Add 'dots' image size option, fix up border size at edge of grid, and make drag and drop work to/from the window. Wed Mar 2 23:34:30 2005 John Ellis <johne@verizon.net> * globals.c, gqview.h, rcfile.c: Add thumbnail_fast option variable. * image-load.c, typedefs.h: Add shrunk flag to determine if an image was scaled down using image_loader_set_requested_size. * image.c: Make panning with mouse scroll more when holding shift key. * preferences.c: Add option for 'Fast jpeg thumbnailing' and disabled xvpics option in the gui - now a hidden option. * thumb.c, thumb_standard.c: Add support for thumbnail_fast option..
author gqview
date Thu, 03 Mar 2005 06:32:53 +0000
parents d907d608745f
children 6281cc38e5ca
line wrap: on
line diff
--- a/src/rcfile.c	Wed Mar 02 02:47:53 2005 +0000
+++ b/src/rcfile.c	Thu Mar 03 06:32:53 2005 +0000
@@ -238,6 +238,7 @@
 	write_int_option(f, "thumbnail_height", thumb_max_height);
 	write_bool_option(f, "cache_thumbnails", enable_thumb_caching);
 	write_bool_option(f, "cache_thumbnails_into_dirs", enable_thumb_dirs);
+	write_bool_option(f, "thumbnail_fast", thumbnail_fast);
 	write_bool_option(f, "use_xvpics_thumbnails", use_xvpics_thumbnails);
 	write_bool_option(f, "thumbnail_spec_standard", thumbnail_spec_standard);
 	fprintf(f,"\n");
@@ -450,6 +451,8 @@
 			"cache_thumbnails", value, enable_thumb_caching);
 		enable_thumb_dirs = read_bool_option(f, option,
 			"cache_thumbnails_into_dirs", value, enable_thumb_dirs);
+		thumbnail_fast = read_bool_option(f, option,
+			"thumbnail_fast", value, thumbnail_fast);
 		use_xvpics_thumbnails = read_bool_option(f, option,
 			"use_xvpics_thumbnails", value, use_xvpics_thumbnails);
 		thumbnail_spec_standard = read_bool_option(f, option,