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>2013-12-31 22:53:06 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2014-01-04 01:28:18 +0400
commit3a3cce2e9b08f88361ccddaa795f12710ce627b1 (patch)
tree1b534a6479eb030490d64ab5744bd04b121e619a /release
parent428a8d5980277d70bc041129a5c33ca9c85c6b9e (diff)
Basic Tab for Object Mode 3D View Toolbar
This updates the organization and naming of the Basic tab for the 3D View toolbar. It reorganizes the tools that were already there and adds Mirror and Duplicate Linked object operators.
Diffstat (limited to 'release')
-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:")