Motion tracking: use is_keyed to match naming in other areas of RNA

This commit is contained in:
Sergey Sharybin
2013-11-03 09:33:17 +00:00
parent ec32964194
commit e5572a3f55

View File

@@ -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");