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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-12-04 18:47:23 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-12-04 18:47:23 +0400
commit04e434cd81edf942289f7094bc5fdc3ab8846259 (patch)
tree27b5a3d29439efa6dbc50bd792b0ff30b39c4584 /source/blender/editors/space_sequencer
parent45fc80153a40fb01db6b1e25b4ab575a06a331b8 (diff)
Fix T37690: UI does not immediatelly reflect new length of effect strip
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index a0224b98cbb..2952bdb042c 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -1601,6 +1601,15 @@ static int sequencer_cut_exec(bContext *C, wmOperator *op)
}
SEQ_END;
}
+
+ SEQP_BEGIN (ed, seq)
+ {
+ if (seq->seq1 || seq->seq2 || seq->seq3) {
+ BKE_sequence_calc(scene, seq);
+ }
+ }
+ SEQ_END;
+
/* as last: */
BKE_sequencer_sort(scene);
}