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>2013-11-03 13:33:17 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-11-03 13:33:17 +0400
commite5572a3f553409a6960baba769c0a0ee0ee48853 (patch)
tree8bf7e5575cb1af62295cbbaeaeb42e9b0ff5caaf /source/blender/makesrna/intern/rna_tracking.c
parentec32964194966927f24a02ba4a0c63437e99bd5e (diff)
Motion tracking: use is_keyed to match naming in other areas of RNA
Diffstat (limited to 'source/blender/makesrna/intern/rna_tracking.c')
-rw-r--r--source/blender/makesrna/intern/rna_tracking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_tracking.c b/source/blender/makesrna/intern/rna_tracking.c
index 83d9bca4780..662673adf77 100644
--- a/source/blender/makesrna/intern/rna_tracking.c
+++ b/source/blender/makesrna/intern/rna_tracking.c
@@ -1091,7 +1091,7 @@ static void rna_def_trackingMarker(BlenderRNA *brna)
RNA_def_property_update(prop, NC_MOVIECLIP | NA_EDITED, "rna_tracking_markerSearch_update");
/* is marker keyframed */
- prop = RNA_def_property(srna, "is_keyframed", PROP_BOOLEAN, PROP_NONE);
+ prop = RNA_def_property(srna, "is_keyed", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", MARKER_TRACKED);
RNA_def_property_ui_text(prop, "Keyframed", "Indicates whether position of marker is keyframed, not tracked");