[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27586] trunk/blender/source/blender/ makesrna/intern/rna_scene.c: Fix [#21568] Scene Linking

Matt Ebb matt at mke3.net
Thu Mar 18 05:46:32 CET 2010


Revision: 27586
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27586
Author:   broken
Date:     2010-03-18 05:46:27 +0100 (Thu, 18 Mar 2010)

Log Message:
-----------
Fix [#21568] Scene Linking

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-03-18 04:09:59 UTC (rev 27585)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2010-03-18 04:46:27 UTC (rev 27586)
@@ -2690,8 +2690,8 @@
 	RNA_def_property_struct_type(prop, "Scene");
 	RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK);
 	RNA_def_property_pointer_funcs(prop, NULL, "rna_Scene_set_set", NULL);
-	RNA_def_property_ui_text(prop, "Set Scene", "Background set scene");
-	RNA_def_property_update(prop, NC_SCENE, NULL);
+	RNA_def_property_ui_text(prop, "Background Scene", "Background set scene");
+	RNA_def_property_update(prop, NC_SCENE|NA_EDITED, NULL);
 
 	prop= RNA_def_property(srna, "world", PROP_POINTER, PROP_NONE);
 	RNA_def_property_flag(prop, PROP_EDITABLE);





More information about the Bf-blender-cvs mailing list