comparison src/options.c @ 1548:b5608391f479

support X11 screen profile http://freedesktop.org/wiki/ICC_Profiles_in_X_Specification_0.3
author nadvornik
date Mon, 13 Apr 2009 10:55:49 +0000
parents 286ed7c6cae6
children c776b1310ca6 c3416996fd97
comparison
equal deleted inserted replaced
1547:2a3efbdf73b0 1548:b5608391f479
31 options->collections.rectangular_selection = FALSE; 31 options->collections.rectangular_selection = FALSE;
32 32
33 options->color_profile.enabled = TRUE; 33 options->color_profile.enabled = TRUE;
34 options->color_profile.input_type = 0; 34 options->color_profile.input_type = 0;
35 options->color_profile.screen_file = NULL; 35 options->color_profile.screen_file = NULL;
36 options->color_profile.screen_type = 0;
37 options->color_profile.use_image = TRUE; 36 options->color_profile.use_image = TRUE;
37 options->color_profile.use_x11_screen_profile = TRUE;
38 38
39 options->dnd_icon_size = 48; 39 options->dnd_icon_size = 48;
40 options->duplicates_similarity_threshold = 99; 40 options->duplicates_similarity_threshold = 99;
41 41
42 options->file_filter.disable = FALSE; 42 options->file_filter.disable = FALSE;
221 layout_sort_get(lw, &options->file_sort.method, &options->file_sort.ascending); 221 layout_sort_get(lw, &options->file_sort.method, &options->file_sort.ascending);
222 222
223 options->color_profile.enabled = layout_image_color_profile_get_use(lw); 223 options->color_profile.enabled = layout_image_color_profile_get_use(lw);
224 layout_image_color_profile_get(lw, 224 layout_image_color_profile_get(lw,
225 &options->color_profile.input_type, 225 &options->color_profile.input_type,
226 &options->color_profile.screen_type,
227 &options->color_profile.use_image); 226 &options->color_profile.use_image);
228 } 227 }
229 228
230 } 229 }
231 230