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/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index d9bbf3e3b08..cca2244d868 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -72,7 +72,7 @@ def draw_gpencil_tools(context, layout):
class VIEW3D_PT_tools_basic(View3DPanel, Panel):
bl_category = "Basic"
bl_context = "objectmode"
- bl_label = "Basic"
+ bl_label = "Object Operations"
def draw(self, context):
layout = self.layout
@@ -87,14 +87,19 @@ class VIEW3D_PT_tools_basic(View3DPanel, Panel):
if active_object and active_object.type in {'MESH', 'CURVE', 'SURFACE'}:
col = layout.column(align=True)
+ col.operator("transform.mirror", text="Mirror")
+
+ col = layout.column(align=True)
+ col.operator("object.origin_set", text="Set Origin")
+
+ col = layout.column(align=True)
col.label(text="Object:")
- col.operator("object.join")
col.operator("object.duplicate_move", text="Duplicate")
col.operator("object.duplicate_move_linked", text="Duplicate Linked")
- col.operator("object.delete")
-
+
col = layout.column(align=True)
- col.operator("object.origin_set", text="Origin")
+ col.operator("object.join")
+ col.operator("object.delete")
col = layout.column(align=True)
col.label(text="Shading:")