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:
authorMatt Ebb <matt@mke3.net>2010-01-03 11:38:42 +0300
committerMatt Ebb <matt@mke3.net>2010-01-03 11:38:42 +0300
commit7a33b5ce72dd245d89273d2ce9d16a713f0cc326 (patch)
treef3eb56f241a2c8a7d0204aaac7549d21aa33cbd5 /source/blender/editors/object/object_group.c
parent251ef0a47f34806b911ab18b59f604dd0ef3ea5b (diff)
Tweak to group operator naming
Diffstat (limited to 'source/blender/editors/object/object_group.c')
-rw-r--r--source/blender/editors/object/object_group.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_group.c b/source/blender/editors/object/object_group.c
index 1e5b93aa6dc..50fc5f5d2fe 100644
--- a/source/blender/editors/object/object_group.c
+++ b/source/blender/editors/object/object_group.c
@@ -287,8 +287,9 @@ void OBJECT_OT_group_add(wmOperatorType *ot)
PropertyRNA *prop;
/* identifiers */
- ot->name= "Add Group";
+ ot->name= "Add to Group";
ot->idname= "OBJECT_OT_group_add";
+ ot->description = "Add an object to an existing group, or create new.";
/* api callbacks */
ot->exec= group_add_exec;