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:
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")