[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [34426] trunk/blender/source/blender/ makesrna/intern/rna_sequencer.c: Bugfix [#25737] Console error message

Joshua Leung aligorith at gmail.com
Thu Jan 20 22:46:11 CET 2011


Revision: 34426
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=34426
Author:   aligorith
Date:     2011-01-20 21:46:11 +0000 (Thu, 20 Jan 2011)
Log Message:
-----------
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.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_sequencer.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_sequencer.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_sequencer.c	2011-01-20 21:38:25 UTC (rev 34425)
+++ trunk/blender/source/blender/makesrna/intern/rna_sequencer.c	2011-01-20 21:46:11 UTC (rev 34426)
@@ -1344,6 +1344,7 @@
 
 	rna_def_filter_video(srna);
 	rna_def_proxy(srna);
+	rna_def_input(srna); // XXX: why not? [#25737]
 }
 
 static void rna_def_multicam(BlenderRNA *brna)




More information about the Bf-blender-cvs mailing list