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:11:43 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2014-01-04 01:28:19 +0400
commitbab51c78cb62b3e1c534d38c863a79e7d4da3f44 (patch)
treea132cfe7be243af099ee878a753c0d25da83a48c /release
parentaadce94f22af2b02f6131cb3811ae888ddc666d9 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py8
1 files changed, 5 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 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()