# HG changeset patch # User nadvornik # Date 1239662447 0 # Node ID ffc44762e706b4efa75f505c29113dc648396886 # Parent 7302ff300a52eaa0203997ffec02230ce177bd34 color profile fixes diff -r 7302ff300a52 -r ffc44762e706 src/image.c --- a/src/image.c Mon Apr 13 14:39:50 2009 +0000 +++ b/src/image.c Mon Apr 13 22:40:47 2009 +0000 @@ -243,7 +243,7 @@ screen_type = COLOR_PROFILE_MEM; DEBUG_1("Using X11 screen profile, length: %d", screen_profile_len); } - if (options->color_profile.screen_file && + else if (options->color_profile.screen_file && is_readable_file(options->color_profile.screen_file)) { screen_type = COLOR_PROFILE_FILE; @@ -348,10 +348,10 @@ #if 0 if (run_in_bg) color_man_start_bg(imd->cm, image_post_process_color_cb, imd); #endif - return TRUE; } - return FALSE; + image_update_util(imd); + return !!cm; }