VSE: Fix missing cache invalidation

Fixes T88606
This commit is contained in:
Richard Antalik 2021-05-31 17:27:02 +02:00
parent 44d2479dc3
commit b862916eaf
Notes: blender-bot 2023-02-14 07:45:38 +01:00
Referenced by issue #88606, Sequencer preview not updated after change of color space of video
2 changed files with 2 additions and 2 deletions

View File

@ -650,7 +650,7 @@ static void rna_ColorManagedColorspaceSettings_reload_update(Main *bmain,
seq->strip->proxy->anim = NULL;
}
SEQ_relations_invalidate_cache_preprocessed(scene, seq);
SEQ_relations_invalidate_cache_raw(scene, seq);
}
else {
SEQ_ALL_BEGIN (scene->ed, seq) {

View File

@ -5466,7 +5466,7 @@ static void rna_def_space_sequencer(BlenderRNA *brna)
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_PROXIES);
RNA_def_property_ui_text(
prop, "Use Proxies", "Use optimized files for faster scrubbing when available");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, NULL);
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, "rna_SequenceEditor_update_cache");
/* grease pencil */
prop = RNA_def_property(srna, "grease_pencil", PROP_POINTER, PROP_NONE);