[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [61067] trunk/blender/source/blender/ makesrna/intern/rna_tracking.c: Motion tracking: use is_keyed to match naming in other areas of RNA

Sergey Sharybin sergey.vfx at gmail.com
Sun Nov 3 10:33:17 CET 2013


Revision: 61067
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=61067
Author:   nazgul
Date:     2013-11-03 09:33:17 +0000 (Sun, 03 Nov 2013)
Log Message:
-----------
Motion tracking: use is_keyed to match naming in other areas of RNA

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_tracking.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_tracking.c	2013-11-03 05:19:55 UTC (rev 61066)
+++ trunk/blender/source/blender/makesrna/intern/rna_tracking.c	2013-11-03 09:33:17 UTC (rev 61067)
@@ -1091,7 +1091,7 @@
 	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");




More information about the Bf-blender-cvs mailing list