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>2016-08-29 14:03:50 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-08-29 14:04:24 +0300
commita9f8e384f1b3335e8a87468fdb07678cd8b580fc (patch)
tree03b89363f2d37831a76bb431ef5cef68757792a7
parentcc2faa409fc8508fb0131bdc344651f2863957f6 (diff)
Movie clip: Add missing animation data RNA declaration
Was missing since the beginning of the days.
-rw-r--r--source/blender/makesrna/intern/rna_movieclip.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_movieclip.c b/source/blender/makesrna/intern/rna_movieclip.c
index 19d78361019..15411f85ba3 100644
--- a/source/blender/makesrna/intern/rna_movieclip.c
+++ b/source/blender/makesrna/intern/rna_movieclip.c
@@ -347,6 +347,8 @@ static void rna_def_movieclip(BlenderRNA *brna)
RNA_def_property_pointer_sdna(prop, NULL, "colorspace_settings");
RNA_def_property_struct_type(prop, "ColorManagedInputColorspaceSettings");
RNA_def_property_ui_text(prop, "Color Space Settings", "Input color space settings");
+
+ rna_def_animdata_common(srna);
}
void RNA_def_movieclip(BlenderRNA *brna)