VSE: Fix cache invalidation

Blend mode replace is done in preprocessing stage, but property update
function invalidated composite cache.
This commit is contained in:
Richard Antalik 2021-08-10 01:24:06 +02:00
parent cd692c6954
commit cb7b4064d6
Notes: blender-bot 2023-02-14 03:29:37 +01:00
Referenced by issue #90696, Blender hangs when clicking on "Materials Properties" tab
1 changed files with 1 additions and 1 deletions

View File

@ -1900,7 +1900,7 @@ static void rna_def_sequence(BlenderRNA *brna)
/* stupid 0-100 -> 0-1 */
RNA_def_property_float_funcs(prop, "rna_Sequence_opacity_get", "rna_Sequence_opacity_set", NULL);
RNA_def_property_update(
prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_composite_update");
prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update");
prop = RNA_def_property(srna, "effect_fader", PROP_FLOAT, PROP_FACTOR);
RNA_def_property_range(prop, 0.0f, 1.0f);