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:
authorCampbell Barton <ideasman42@gmail.com>2009-07-30 03:12:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-07-30 03:12:30 +0400
commit239b78c6377c41ba49e36a1dbd3cede6a3347f64 (patch)
treede928373585b2e0c4bf07938413ea3cb0749b99d /source/blender/editors/space_file/file_ops.c
parent408ba429e6aa392f769aac4a442a7a06c1740326 (diff)
- include operator commands in tooltips (needs sanitizing for transform operators, there are massive :|)
- WM_operator_pystring can now be used with an operator type and properties (rather then a wmOperator instance) - removed menus from file selector
Diffstat (limited to 'source/blender/editors/space_file/file_ops.c')
-rw-r--r--source/blender/editors/space_file/file_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index a217dbe9f57..9c73956d375 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -716,6 +716,7 @@ void FILE_OT_directory_new(struct wmOperatorType *ot)
/* identifiers */
ot->name= "Create New Directory";
ot->idname= "FILE_OT_directory_new";
+ ot->description= "Create a new directory";
/* api callbacks */
ot->invoke= WM_operator_confirm;