diff src/image.c @ 320:c74af1cbd61a

Move more options to ConfOptions.
author zas_
date Fri, 11 Apr 2008 22:52:22 +0000
parents b16b9b8979e5
children 049d6b00cc14
line wrap: on
line diff
--- a/src/image.c	Fri Apr 11 22:27:54 2008 +0000
+++ b/src/image.c	Fri Apr 11 22:52:22 2008 +0000
@@ -335,10 +335,10 @@
 		gint n;
 
 		n = imd->color_profile_input - 1;
-		if (!color_profile_input_file[n]) return FALSE;
+		if (!options->color_profile_input_file[n]) return FALSE;
 
 		input_type = COLOR_PROFILE_FILE;
-		input_file = color_profile_input_file[n];
+		input_file = options->color_profile_input_file[n];
 		}
 	else if (imd->color_profile_input == 0)
 		{
@@ -351,10 +351,10 @@
 		}
 
 	if (imd->color_profile_screen == 1 &&
-	    color_profile_screen_file)
+	    options->color_profile_screen_file)
 		{
 		screen_type = COLOR_PROFILE_FILE;
-		screen_file = color_profile_screen_file;
+		screen_file = options->color_profile_screen_file;
 		}
 	else if (imd->color_profile_screen == 0)
 		{
@@ -427,13 +427,13 @@
 
 	if (!image_get_pixbuf(imd)) return;
 
-	if (exif_rotate_enable ||
+	if (options->exif_rotate_enable ||
 	    (imd->color_profile_enable && imd->color_profile_use_image) )
 		{
 		exif = exif_read_fd(imd->image_fd, (imd->color_profile_enable && imd->color_profile_use_image));
 		}
 
-	if (exif_rotate_enable && exif)
+	if (options->exif_rotate_enable && exif)
 		{
 		gint orientation;
 
@@ -1522,7 +1522,7 @@
 	
 	if (!imd || !image_get_pixbuf(imd) ||
 	    imd->il || !imd->image_fd ||
-	    !update_on_time_change) return TRUE;
+	    !options->update_on_time_change) return TRUE;
 
 	newtime = filetime(imd->image_fd->path);
 	if (newtime > 0 && newtime != imd->mtime)