[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45979] trunk/blender/source/blender/ makesrna/intern/rna_sequencer.c: Fix related to #31067: missing update when toggling Premultiply on a sequencer strip.

Brecht Van Lommel brechtvanlommel at pandora.be
Thu Apr 26 14:13:24 CEST 2012


Revision: 45979
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45979
Author:   blendix
Date:     2012-04-26 12:13:22 +0000 (Thu, 26 Apr 2012)
Log Message:
-----------
Fix related to #31067: missing update when toggling Premultiply on a sequencer strip.

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_sequencer.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_sequencer.c	2012-04-26 11:48:36 UTC (rev 45978)
+++ trunk/blender/source/blender/makesrna/intern/rna_sequencer.c	2012-04-26 12:13:22 UTC (rev 45979)
@@ -1243,7 +1243,7 @@
 	prop = RNA_def_property(srna, "use_premultiply", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_MAKE_PREMUL);
 	RNA_def_property_ui_text(prop, "Premultiply", "Convert RGB from key alpha to premultiplied alpha");
-	RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
+	RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, "rna_Sequence_update");
 
 	prop = RNA_def_property(srna, "use_flip_x", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_FLIPX);




More information about the Bf-blender-cvs mailing list