[Bf-blender-cvs] [aadce94] master: Rename Add to Group and Remove from Group operators in the toolbar.

Jonathan Williamson noreply at git.blender.org
Fri Jan 3 22:29:02 CET 2014


Commit: aadce94f22af2b02f6131cb3811ae888ddc666d9
Author: Jonathan Williamson
Date:   Fri Jan 3 15:08:33 2014 -0600
https://developer.blender.org/rBaadce94f22af2b02f6131cb3811ae888ddc666d9

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.

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

M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

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

diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 9d52b15..e06f03a 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")




More information about the Bf-blender-cvs mailing list