Merge branch 'blender-v4.3-release'

This commit is contained in:
Richard Antalik
2024-10-29 21:52:44 +01:00

View File

@@ -1406,11 +1406,6 @@ static int sequencer_select_handle_exec(bContext *C, wmOperator *op)
return OPERATOR_CANCELLED | OPERATOR_PASS_THROUGH;
}
if (sequencer_retiming_mode_is_active(C) && retiming_keys_can_be_displayed(CTX_wm_space_seq(C)))
{
return OPERATOR_CANCELLED | OPERATOR_PASS_THROUGH;
}
MouseCoords mouse_co(v2d, RNA_int_get(op->ptr, "mouse_x"), RNA_int_get(op->ptr, "mouse_y"));
StripSelection selection = ED_sequencer_pick_strip_and_handle(scene, v2d, mouse_co.view);
@@ -1449,6 +1444,7 @@ static int sequencer_select_handle_exec(bContext *C, wmOperator *op)
sequencer_select_connected_strips(selection);
}
SEQ_retiming_selection_clear(ed);
sequencer_select_do_updates(C, scene);
sequencer_select_set_active(scene, selection.seq1);
return OPERATOR_FINISHED | OPERATOR_PASS_THROUGH;