[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29605] trunk/blender/source/blender/ makesrna/intern/rna_scene.c: Tweak for previous color management notifier tweak - works fine here with just ND_RENDER_OPTIONS

Matt Ebb matt at mke3.net
Tue Jun 22 04:35:08 CEST 2010


Revision: 29605
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29605
Author:   broken
Date:     2010-06-22 04:35:05 +0200 (Tue, 22 Jun 2010)

Log Message:
-----------
Tweak for previous color management notifier tweak - works fine here with just ND_RENDER_OPTIONS

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_scene.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2010-06-22 02:29:52 UTC (rev 29604)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2010-06-22 02:35:05 UTC (rev 29605)
@@ -2486,8 +2486,9 @@
 	
 	prop= RNA_def_property(srna, "color_management", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "color_mgt_flag", R_COLOR_MANAGEMENT);
-	RNA_def_property_ui_text(prop, "Color Management", "Use color profiles and gamma corrected imaging pipeline");
-	RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS|NC_MATERIAL|ND_SHADING_DRAW, "rna_RenderSettings_color_management_update");
+	RNA_def_property_ui_text(prop, "Color Management", "Use linear workflow - gamma corrected imaging pipeline");
+	RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, "rna_RenderSettings_color_management_update");
+
 	
 	prop= RNA_def_property(srna, "use_file_extension", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "scemode", R_EXTENSION);





More information about the Bf-blender-cvs mailing list