Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2018-10-23 15:03:57 +0300
committerJacques Lucke <mail@jlucke.com>2018-10-23 15:03:57 +0300
commit767b49e49249cbc6679f79e1241d7a55749ab64c (patch)
tree409939e0797435cf36fbc30fb87eb49573f23255 /source/blender
parentbc480c4989802f4becdd39b2ad845cc4475c968a (diff)
Fix: missing sequencer update
This should be fixed differently in the future. Read D3821 for more details. Reviewers: brecht Differential Revision: https://developer.blender.org/D3821
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 2fc5bab084a..ec5a41995a4 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -125,6 +125,7 @@ static void rna_Sequence_update(Main *UNUSED(bmain), Scene *UNUSED(scene), Point
Sequence *seq = (Sequence *) ptr->data;
BKE_sequence_invalidate_cache(scene, seq);
+ WM_main_add_notifier(NC_SCENE | ND_SEQUENCER, scene);
}
}