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>2018-03-05 09:01:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-05 09:03:18 +0300
commit9593a627465b70c4a999d0289a6283869d3eeaab (patch)
tree74a39e8fc723d4fbecec77c1c589ac295281826d /source/blender/editors/space_sequencer
parentf3018322c097fe9893f73e2f66c1cd87ed30660c (diff)
Cleanup: left wrong comment in
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 90737b20672..0895d28fba7 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -671,8 +671,7 @@ static Sequence *cut_seq_hard(Scene *scene, Sequence *seq, int cutframe)
Sequence *seqn = NULL;
bool skip_dup = false;
- /* The frame is exactly on the endpoint,
- * this needs special handling for soft cut (not needed for hard cut). */
+ /* Unlike soft-cut, it's important to use the same value for both strips. */
const bool is_end_exact = ((seq->start + seq->len) == cutframe);
/* backup values */
@@ -793,8 +792,6 @@ static Sequence *cut_seq_soft(Scene *scene, Sequence *seq, int cutframe)
Sequence *seqn = NULL;
bool skip_dup = false;
- /* The frame is exactly on the endpoint,
- * this needs special handling for soft cut (not needed for hard cut). */
bool is_end_exact = ((seq->start + seq->len) == cutframe);
/* backup values */