[Bf-blender-cvs] [9593a627465] master: Cleanup: left wrong comment in

Campbell Barton noreply at git.blender.org
Mon Mar 5 06:57:20 CET 2018


Commit: 9593a627465b70c4a999d0289a6283869d3eeaab
Author: Campbell Barton
Date:   Mon Mar 5 17:01:57 2018 +1100
Branches: master
https://developer.blender.org/rB9593a627465b70c4a999d0289a6283869d3eeaab

Cleanup: left wrong comment in

===================================================================

M	source/blender/editors/space_sequencer/sequencer_edit.c

===================================================================

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 */



More information about the Bf-blender-cvs mailing list