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:
authorJoerg Mueller <nexyon@gmail.com>2009-11-14 23:17:05 +0300
committerJoerg Mueller <nexyon@gmail.com>2009-11-14 23:17:05 +0300
commit694525e38ba8acc207f2289a028675415de6068a (patch)
tree4a4d1fbe27aa537ead209356b65eb36dd093aaad /source/blender/editors/space_sequencer
parente94640040b8e984952de7ebbb772ebe9fdb276c4 (diff)
Make it possible to put audio strips into meta strips in the sequencer.
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index a83d779fe80..5dd453b9e30 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -2103,10 +2103,6 @@ static int sequencer_meta_make_exec(bContext *C, wmOperator *op)
while(seq) {
if(seq->flag & SELECT) {
tot++;
- if (seq->type == SEQ_SOUND) {
- BKE_report(op->reports, RPT_ERROR, "Can't make Meta Strip from audio");
- return OPERATOR_CANCELLED;;
- }
}
seq= seq->next;
}