sequencer,

simple fix for extend (aka ripple editing)
dont operate on metastrips makes them work as expected (since the seq's inside are moved).
This commit is contained in:
Campbell Barton
2007-10-16 00:10:37 +00:00
parent e9c2aa691e
commit 8e3b881181

View File

@@ -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;