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:
authorFalk David <falkdavid@gmx.de>2021-01-19 14:32:07 +0300
committerFalk David <falkdavid@gmx.de>2021-01-19 14:32:07 +0300
commitd60b128274c60fabfd6a149a95789c77065eadc0 (patch)
treeca60385674d2beea7ee9bf9c3384dd12b62d8906 /source/blender/editors/space_sequencer
parent089cd25982b41e9ab72642dada59074d08fb0bdf (diff)
parenta9203e25a2e1f1489b8a3705f8883cdd86f094c7 (diff)
Merge branch 'blender-v2.92-release'
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 09e9acb87de..4f9fbc44631 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -1255,7 +1255,9 @@ static int sequencer_reassign_inputs_exec(bContext *C, wmOperator *op)
last_seq->seq2 = seq2;
last_seq->seq3 = seq3;
+ int old_start = last_seq->start;
SEQ_relations_update_changed_seq_and_deps(scene, last_seq, 1, 1);
+ SEQ_offset_animdata(scene, last_seq, (last_seq->start - old_start));
WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);