comparison src/globals.c @ 327:049d6b00cc14

Rename color profile options.
author zas_
date Sat, 12 Apr 2008 08:05:44 +0000
parents 509b84801d66
children a51242c032ea
comparison
equal deleted inserted replaced
326:509b84801d66 327:049d6b00cc14
110 options->dupe_custom_threshold = 99; 110 options->dupe_custom_threshold = 99;
111 111
112 options->file_sort_case_sensitive = FALSE; 112 options->file_sort_case_sensitive = FALSE;
113 113
114 /* layout */ 114 /* layout */
115 options->layout_order = NULL; 115 options->layout.order = NULL;
116 options->layout_style = 0; 116 options->layout.style = 0;
117 117
118 options->layout_view_icons = FALSE; 118 options->layout.view_as_icons = FALSE;
119 options->layout_view_tree = FALSE; 119 options->layout.view_as_tree = FALSE;
120 120
121 options->show_icon_names = TRUE; 121 options->show_icon_names = TRUE;
122 122
123 options->tree_descend_subdirs = FALSE; 123 options->tree_descend_subdirs = FALSE;
124 124
125 options->lazy_image_sync = FALSE; 125 options->lazy_image_sync = FALSE;
126 options->update_on_time_change = TRUE; 126 options->update_on_time_change = TRUE;
127 options->exif_rotate_enable = TRUE; 127 options->exif_rotate_enable = TRUE;
128 128
129 /* color profiles */ 129 /* color profiles */
130 options->color_profile_enabled = FALSE; 130 options->color_profile.enabled = FALSE;
131 options->color_profile_input_type = 0; 131 options->color_profile.input_type = 0;
132 options->color_profile_screen_type = 0; 132 options->color_profile.screen_type = 0;
133 options->color_profile_screen_file = NULL; 133 options->color_profile.screen_file = NULL;
134 options->color_profile_use_image = TRUE; 134 options->color_profile.use_image = TRUE;
135 135
136 options->filename_filter = NULL; 136 options->filename_filter = NULL;
137 137
138 return options; 138 return options;
139 } 139 }