From 52bdf522afcd27817cf38a8f5c972ce02d80acab Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Sat, 21 Sep 2019 19:00:30 -0700 Subject: Fix T69593: Color strip won't update Reviewed By: JacquesLucke Differential Revision: https://developer.blender.org/D5803 --- source/blender/makesrna/intern/rna_sequencer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '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) -- cgit v1.2.3