[Bf-blender-cvs] [91246bf91d9] temp-lanpr-cleanup: Fix T69593: Color strip won't update

Richard Antalik noreply at git.blender.org
Wed Sep 25 03:50:28 CEST 2019


Commit: 91246bf91d97051624bcaa37bff87ce3b3b6cec5
Author: Richard Antalik
Date:   Sat Sep 21 19:00:30 2019 -0700
Branches: temp-lanpr-cleanup
https://developer.blender.org/rB91246bf91d97051624bcaa37bff87ce3b3b6cec5

Fix T69593: Color strip won't update

Reviewed By: JacquesLucke

Differential Revision: https://developer.blender.org/D5803

===================================================================

M	source/blender/makesrna/intern/rna_sequencer.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index e27761eaabe..dc0cc0482aa 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2639,8 +2639,7 @@ static void rna_def_solid_color(StructRNA *srna)
   prop = RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR_GAMMA);
   RNA_def_property_float_sdna(prop, NULL, "col");
   RNA_def_property_ui_text(prop, "Color", "Effect Strip color");
-  RNA_def_property_update(
-      prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
+  RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update");
 }
 
 static void rna_def_speed_control(StructRNA *srna)



More information about the Bf-blender-cvs mailing list