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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-09-25 13:40:04 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-09-25 13:40:04 +0400
commit5f0ee9e9edda3d6d87be67b415e6d0826a87fca6 (patch)
tree897b25b49d48c377e7884c21caf915b22bcbafef /source/blender/makesrna/intern/rna_sequencer.c
parentb5a92a0d87a1f95e305d436289293c9c7e8c31a5 (diff)
Remove access to deprecated per-strip color balance in RNA.
Diffstat (limited to 'source/blender/makesrna/intern/rna_sequencer.c')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index b27148e964d..d83debd3266 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -699,12 +699,6 @@ static int colbalance_seq_cmp_cb(Sequence *seq, void *arg_pt)
{
SequenceSearchData *data = arg_pt;
- if (seq->strip && seq->strip->color_balance == data->data) {
- data->seq = seq;
- data->smd = NULL;
- return -1; /* done so bail out */
- }
-
if (seq->modifiers.first) {
SequenceModifierData *smd = seq->modifiers.first;