[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [30988] trunk/blender/source/blender/ makesrna/intern/rna_modifier.c: bugfix [#23151] UV Project not update in realtime until you save the file and reopen it.

Campbell Barton ideasman42 at gmail.com
Mon Aug 2 18:57:46 CEST 2010


Revision: 30988
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=30988
Author:   campbellbarton
Date:     2010-08-02 18:57:46 +0200 (Mon, 02 Aug 2010)

Log Message:
-----------
bugfix [#23151] UV Project not update in realtime until you save the file and reopen it.

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_modifier.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2010-08-02 16:41:14 UTC (rev 30987)
+++ trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2010-08-02 16:57:46 UTC (rev 30988)
@@ -1387,6 +1387,7 @@
 	RNA_def_property_pointer_funcs(prop, "rna_UVProjector_object_get", "rna_UVProjector_object_set", NULL);
 	RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK);
 	RNA_def_property_ui_text(prop, "Object", "Object to use as projector transform");
+	RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update");
 }
 
 static void rna_def_modifier_smooth(BlenderRNA *brna)





More information about the Bf-blender-cvs mailing list