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:
authorFĂ©lix <Miadim>2021-03-20 01:36:28 +0300
committerRichard Antalik <richardantalik@gmail.com>2021-03-20 03:40:53 +0300
commit4158405c0b9d32dd0c6cc1844bc06561b8513766 (patch)
treec6d600d0874d80b30914c4d593cea5d5d4f668c2 /source/blender/sequencer/SEQ_edit.h
parent01f028a677e27cb68ea499c7899f7c7ba1bd9426 (diff)
VSE: Add move_to_meta RNA API function
This function can be used to move strips into meta strips with no side effects like change of selection state. Reviewed By: ISS Differential Revision: https://developer.blender.org/D10759
Diffstat (limited to 'source/blender/sequencer/SEQ_edit.h')
-rw-r--r--source/blender/sequencer/SEQ_edit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/sequencer/SEQ_edit.h b/source/blender/sequencer/SEQ_edit.h
index c8f11803ca8..38ce665563c 100644
--- a/source/blender/sequencer/SEQ_edit.h
+++ b/source/blender/sequencer/SEQ_edit.h
@@ -33,6 +33,9 @@ struct Scene;
struct Sequence;
int SEQ_edit_sequence_swap(struct Sequence *seq_a, struct Sequence *seq_b, const char **error_str);
+int SEQ_edit_move_strip_to_meta(struct Scene *scene,
+ struct Sequence *src_seq,
+ struct Sequence *dst_seqm);
void SEQ_edit_flag_for_removal(struct Scene *scene,
struct ListBase *seqbase,
struct Sequence *seq);