Commit: 52bdf522afcd27817cf38a8f5c972ce02d80acab Author: Richard Antalik Date: Sat Sep 21 19:00:30 2019 -0700 Branches: master https://developer.blender.org/rB52bdf522afcd27817cf38a8f5c972ce02d80acab
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) _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
