[Bf-blender-cvs] [bab51c7] master: Rename "Objects" to "Group:" and separate parent operators into "Parent:" section.

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


Commit: bab51c78cb62b3e1c534d38c863a79e7d4da3f44
Author: Jonathan Williamson
Date:   Fri Jan 3 15:11:43 2014 -0600
https://developer.blender.org/rBbab51c78cb62b3e1c534d38c863a79e7d4da3f44

Rename "Objects" to "Group:" and separate parent operators into "Parent:" section.

This also shortens the naming for the operators since they're now under clear labels.

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

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 e06f03a..21721ff 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -162,13 +162,15 @@ class VIEW3D_PT_tools_relations(View3DPanel, Panel):
 
         col = layout.column(align=True)
 
-        col.label(text="Objects:")
+        col.label(text="Group:")
         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")
+        
+        col.label(text="Parent:")
         row = col.row(align=True)
-        row.operator("object.parent_set", text="Set Parent")
-        row.operator("object.parent_clear", text="Clear Parent")
+        row.operator("object.parent_set", text="Set")
+        row.operator("object.parent_clear", text="Clear")
 
         col.separator()




More information about the Bf-blender-cvs mailing list