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:
authorJoshua Leung <aligorith@gmail.com>2011-01-21 00:46:11 +0300
committerJoshua Leung <aligorith@gmail.com>2011-01-21 00:46:11 +0300
commitcfe1f77a5f173099402c65797ab796af725b5e84 (patch)
treef3482318401fd2892c53aad474393b543ec5d8e5 /source/blender/makesrna/intern/rna_sequencer.c
parent039bb7812f7c99eda99661fd26182fdb1b7cd900 (diff)
Bugfix [#25737] Console error message
It seems that rna_def_effect() is missing a rna_def_input(), resulting in: rna_uiItemR: property not found: EffectSequence.animation_offset_start rna_uiItemR: property not found: EffectSequence.animation_offset_end in the console. I'm not sure whether these settings are used for "effect" strips or not, but I'll leave that to sequencer guys to figure out if/when they get a report about this.
Diffstat (limited to 'source/blender/makesrna/intern/rna_sequencer.c')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 233ffd06188..a578354353e 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -1344,6 +1344,7 @@ static void rna_def_effect(BlenderRNA *brna)
rna_def_filter_video(srna);
rna_def_proxy(srna);
+ rna_def_input(srna); // XXX: why not? [#25737]
}
static void rna_def_multicam(BlenderRNA *brna)