[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51219] trunk/blender/source/blender/ windowmanager/intern/wm_operators.c: Fix #32824: Color management configuration check was missed on file link/append

Sergey Sharybin sergey.vfx at gmail.com
Tue Oct 9 13:31:25 CEST 2012


Revision: 51219
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51219
Author:   nazgul
Date:     2012-10-09 11:31:25 +0000 (Tue, 09 Oct 2012)
Log Message:
-----------
Fix #32824: Color management configuration check was missed on file link/append

Modified Paths:
--------------
    trunk/blender/source/blender/windowmanager/intern/wm_operators.c

Modified: trunk/blender/source/blender/windowmanager/intern/wm_operators.c
===================================================================
--- trunk/blender/source/blender/windowmanager/intern/wm_operators.c	2012-10-09 11:29:29 UTC (rev 51218)
+++ trunk/blender/source/blender/windowmanager/intern/wm_operators.c	2012-10-09 11:31:25 UTC (rev 51219)
@@ -79,6 +79,7 @@
 #include "BIF_glutil.h" /* for paint cursor */
 #include "BLF_api.h"
 
+#include "IMB_colormanagement.h"
 #include "IMB_imbuf_types.h"
 #include "IMB_imbuf.h"
 
@@ -1838,6 +1839,7 @@
 	
 	/* mark all library linked objects to be updated */
 	recalc_all_library_objects(bmain);
+	IMB_colormanagement_check_file_config(bmain);
 
 	/* append, rather than linking */
 	if ((flag & FILE_LINK) == 0) {




More information about the Bf-blender-cvs mailing list