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:
authorJonathan Williamson <jonathan@cgcookie.com>2014-01-04 01:08:33 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2014-01-04 01:28:19 +0400
commitaadce94f22af2b02f6131cb3811ae888ddc666d9 (patch)
tree7a96edeac38282b7ca1488a2ae5002cce4dc2800 /release
parentbf3a4acffcf5828142e198d1846d335306f28c85 (diff)
Rename Add to Group and Remove from Group operators in the toolbar.
The default operator names are too long and rather "obtuse" to use @Billrey's words.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 9d52b159c2f..e06f03ad50f 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -163,9 +163,9 @@ class VIEW3D_PT_tools_relations(View3DPanel, Panel):
col = layout.column(align=True)
col.label(text="Objects:")
- col.operator("group.create")
- col.operator("group.objects_add_active")
- col.operator("group.objects_remove")
+ col.operator("group.create", text="New Group")
+ col.operator("group.objects_add_active", text="Add to Active")
+ col.operator("group.objects_remove", text="Remove from Group")
row = col.row(align=True)
row.operator("object.parent_set", text="Set Parent")
row.operator("object.parent_clear", text="Clear Parent")