Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Weikert <elubie@gmx.net>2013-11-02 14:48:34 +0400
committerAndrea Weikert <elubie@gmx.net>2013-11-02 14:48:34 +0400
commit08838e0d18045a904fa0b376fe0b407e77a45db2 (patch)
tree0f8cbdb44724f248986e6d37c45cf3377fb742fa /source/blender/makesrna/intern/rna_userdef.c
parent4cf57c02fab189239620432ff681d3b6d4f78599 (diff)
Fix: tooltip when adding a new 'Excluded path' for python execution
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 3b5d669ffdb..5221e8de7ce 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -4091,7 +4091,7 @@ static void rna_def_userdef_autoexec_path_collection(BlenderRNA *brna, PropertyR
func = RNA_def_function(srna, "new", "rna_userdef_pathcompare_new");
RNA_def_function_flag(func, FUNC_NO_SELF);
- RNA_def_function_ui_description(func, "Add a new addon");
+ RNA_def_function_ui_description(func, "Add a new path");
/* return type */
parm = RNA_def_pointer(func, "pathcmp", "PathCompare", "", "");
RNA_def_function_return(func, parm);