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:
authorRichard Antalik <richardantalik@gmail.com>2020-12-29 21:55:48 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-12-29 21:57:56 +0300
commitc1740e9ad02da17829a30c8755790729e083cba5 (patch)
treebd470f5ea36b2903652de7ca580c23a88de024cd /source/blender/sequencer
parent48e0e0e2ac73b003056f9a1c7f392b73b8d3c10b (diff)
Fix T83991: Pasting sound strip not working correctly
New UUID was generated for original strip not new one. Bug caused "invisible" sound strip playing that is impossible to remove. Especially noticable when transforming pasted strips. In such case, file reload was necessary. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D9912
Diffstat (limited to 'source/blender/sequencer')
-rw-r--r--source/blender/sequencer/intern/sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/sequencer/intern/sequencer.c b/source/blender/sequencer/intern/sequencer.c
index b589a75fa42..07a767e7447 100644
--- a/source/blender/sequencer/intern/sequencer.c
+++ b/source/blender/sequencer/intern/sequencer.c
@@ -361,7 +361,7 @@ static Sequence *seq_dupli(const Scene *scene_src,
Sequence *seqn = MEM_dupallocN(seq);
if ((flag & LIB_ID_CREATE_NO_MAIN) == 0) {
- SEQ_relations_session_uuid_generate(seq);
+ SEQ_relations_session_uuid_generate(seqn);
}
seq->tmp = seqn;