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:
authorCampbell Barton <ideasman42@gmail.com>2010-06-22 02:05:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-06-22 02:05:34 +0400
commit4bade8e13785fe79478d13aedac201bba4bf8ee9 (patch)
treebfc5decb69c69da8850c250d14cd6345e9f1cca8 /source/blender/blenkernel/intern
parent425da6206f75b9218cf4123ac1b9cdeaf7f86bb1 (diff)
sequence.swap(other) rna function.
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/sequencer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index 51428f56dc9..94d9b90fe7f 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -3812,7 +3812,8 @@ int seq_swap(Sequence *seq_a, Sequence *seq_b)
SWAP(int, seq_a->startstill, seq_b->startstill);
SWAP(int, seq_a->endstill, seq_b->endstill);
SWAP(int, seq_a->machine, seq_b->machine);
- SWAP(int, seq_a->startdisp, seq_b->enddisp);
+ SWAP(int, seq_a->startdisp, seq_b->startdisp);
+ SWAP(int, seq_a->enddisp, seq_b->enddisp);
return 1;
}