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:
-rw-r--r--source/blender/src/editseq.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/src/editseq.c b/source/blender/src/editseq.c
index ed99c71dec5..8ad1a33ba62 100644
--- a/source/blender/src/editseq.c
+++ b/source/blender/src/editseq.c
@@ -2697,7 +2697,8 @@ void transform_seq(int mode, int context)
/* Extend, Similar to grab but operate on one side of the cursor */
WHILE_SEQ(ed->seqbasep) {
if(seq->flag & SELECT) {
- if (sequence_is_free_transformable(seq)) {
+ /* only move the contents of the metastrip otherwise the transformation is applied twice */
+ if (sequence_is_free_transformable(seq) && seq->type != SEQ_META) {
move_left = move_right = 0;