From bab51c78cb62b3e1c534d38c863a79e7d4da3f44 Mon Sep 17 00:00:00 2001 From: Jonathan Williamson Date: Fri, 3 Jan 2014 15:11:43 -0600 Subject: 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. --- release/scripts/startup/bl_ui/space_view3d_toolbar.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py index e06f03ad50f..21721ff74d8 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() -- cgit v1.2.3