[Bf-blender-cvs] [78041fa] master: Fix: fixed UI description of Action.new() function

Sybren A. Stüvel noreply at git.blender.org
Tue Jul 21 14:49:57 CEST 2015


Commit: 78041fa14ab4478c4284212d43435e682c9b3749
Author: Sybren A. Stüvel
Date:   Tue Jul 21 14:20:42 2015 +0200
Branches: master
https://developer.blender.org/rB78041fa14ab4478c4284212d43435e682c9b3749

Fix: fixed UI description of Action.new() function

===================================================================

M	source/blender/makesrna/intern/rna_action.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_action.c b/source/blender/makesrna/intern/rna_action.c
index 29e699a..d121e1f 100644
--- a/source/blender/makesrna/intern/rna_action.c
+++ b/source/blender/makesrna/intern/rna_action.c
@@ -577,7 +577,7 @@ static void rna_def_action_fcurves(BlenderRNA *brna, PropertyRNA *cprop)
 	RNA_def_struct_ui_text(srna, "Action F-Curves", "Collection of action F-Curves");
 
 	func = RNA_def_function(srna, "new", "rna_Action_fcurve_new");
-	RNA_def_function_ui_description(func, "Add a keyframe to the F-Curve");
+	RNA_def_function_ui_description(func, "Add an F-Curve to the action");
 	RNA_def_function_flag(func, FUNC_USE_REPORTS);
 	parm = RNA_def_string(func, "data_path", NULL, 0, "Data Path", "F-Curve data path to use");
 	RNA_def_property_flag(parm, PROP_REQUIRED);




More information about the Bf-blender-cvs mailing list