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:
authorRoland Hess <me@harkyman.com>2009-02-24 06:06:23 +0300
committerRoland Hess <me@harkyman.com>2009-02-24 06:06:23 +0300
commit03ce51bb892c03d207e0474253c9d4d5ce8f9e29 (patch)
treee34e1bc195a055b04522ff0414ccb6c528315de2 /source/blender/makesrna/intern/rna_action.c
parentb9ecc4962b09894af3cfc9fc3343b3fb09e43c86 (diff)
Gave RNA to timeline markers. Updated both Scene and Action RNA for standard and pose markers.
Diffstat (limited to 'source/blender/makesrna/intern/rna_action.c')
-rwxr-xr-xsource/blender/makesrna/intern/rna_action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_action.c b/source/blender/makesrna/intern/rna_action.c
index d52881598f1..ba5423f0408 100755
--- a/source/blender/makesrna/intern/rna_action.c
+++ b/source/blender/makesrna/intern/rna_action.c
@@ -270,7 +270,7 @@ void rna_def_action(BlenderRNA *brna)
prop= RNA_def_property(srna, "pose_markers", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "markers", NULL);
- RNA_def_property_struct_type(prop, "UnknownType"); /* implement when timeline rna is wrapped */
+ RNA_def_property_struct_type(prop, "TimelineMarker");
RNA_def_property_ui_text(prop, "Pose Markers", "Markers specific to this Action, for labeling poses.");
}