Fix T69593: Color strip won't update

Reviewed By: JacquesLucke

Differential Revision: https://developer.blender.org/D5803
This commit is contained in:
Richard Antalik 2019-09-21 19:00:30 -07:00
parent 2e55171e71
commit 52bdf522af
Notes: blender-bot 2023-02-14 11:25:11 +01:00
Referenced by issue #70177, Blender crashes when to to_track_quat() called without arguments
Referenced by issue #70180, Batch Rename dialog gets added backslash (escapes valid characters)
Referenced by issue #69593, VSE no update color of Color Effect Strip
1 changed files with 1 additions and 2 deletions

View File

@ -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)