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

This commit is contained in:
Sybren A. Stüvel 2015-07-21 14:20:42 +02:00
parent 9ae39a1312
commit 78041fa14a
1 changed files with 1 additions and 1 deletions

View File

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