[Bf-blender-cvs] [adafd7257d0] blender-v2.93-release: Fix T88635: VSE: Select Linked gives unpredictable results

Philipp Oeser noreply at git.blender.org
Fri May 28 15:46:45 CEST 2021


Commit: adafd7257d0ed1bcca9eae63ed1e87a891c44975
Author: Philipp Oeser
Date:   Fri May 28 13:38:08 2021 +0200
Branches: blender-v2.93-release
https://developer.blender.org/rBadafd7257d0ed1bcca9eae63ed1e87a891c44975

Fix T88635: VSE: Select Linked gives unpredictable results

Caused by {rB66923031e6f2}.

Code would process unselected sequences and skip selected, needs to be
the other way around.

Maniphest Tasks: T88635

Differential Revision: https://developer.blender.org/D11424

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

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

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

diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c
index a9f8a70d61e..a2bb9bb9ac8 100644
--- a/source/blender/editors/space_sequencer/sequencer_select.c
+++ b/source/blender/editors/space_sequencer/sequencer_select.c
@@ -808,7 +808,7 @@ static bool select_linked_internal(Scene *scene)
   bool changed = false;
 
   LISTBASE_FOREACH (Sequence *, seq, SEQ_active_seqbase_get(ed)) {
-    if ((seq->flag & SELECT) != 0) {
+    if ((seq->flag & SELECT) == 0) {
       continue;
     }
     /* Only get unselected neighbors. */



More information about the Bf-blender-cvs mailing list