[Bf-blender-cvs] [4c74fb2] master: Fix: ActionGroups.new() UI description copy-paste error

Sybren A. Stüvel noreply at git.blender.org
Mon Jan 19 12:58:56 CET 2015


Commit: 4c74fb24a2b2229d11954c70ad8f29b5c943cd1d
Author: Sybren A. Stüvel
Date:   Mon Jan 19 12:58:48 2015 +0100
Branches: master
https://developer.blender.org/rB4c74fb24a2b2229d11954c70ad8f29b5c943cd1d

Fix: ActionGroups.new() UI description copy-paste error

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

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 e256d14..3fed505 100644
--- a/source/blender/makesrna/intern/rna_action.c
+++ b/source/blender/makesrna/intern/rna_action.c
@@ -533,7 +533,7 @@ static void rna_def_action_groups(BlenderRNA *brna, PropertyRNA *cprop)
 	RNA_def_struct_ui_text(srna, "Action Groups", "Collection of action groups");
 
 	func = RNA_def_function(srna, "new", "rna_Action_groups_new");
-	RNA_def_function_ui_description(func, "Add a keyframe to the curve");
+	RNA_def_function_ui_description(func, "Create a new action group and add it to the action");
 	parm = RNA_def_string(func, "name", "Group", 0, "", "New name for the action group");
 	RNA_def_property_flag(parm, PROP_REQUIRED);




More information about the Bf-blender-cvs mailing list