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 02:21:52 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2014-01-04 02:21:52 +0400
commit1af82c0194e3247e04c56c6db977df10c089c6dd (patch)
treecd7ffef81664191e956ca7fc0bf5c9d0713e2536 /release
parent8ccca6440e253f87721e5d32c79093f678ae94c8 (diff)
Add "Basic" and "Options" tabs for Mesh Edit Mode.
This creates the initial two tabs for Edit Mode to makes the new toolbar tabs usable. Further toolbar organization is to follow, but this at least makes the features work with the current organization.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 8f5366f45dd..d95b03ecb80 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -289,6 +289,7 @@ class VIEW3D_PT_tools_add_mesh_edit(View3DPanel, Panel):
col.operator("mesh.primitive_monkey_add", text="Monkey", icon="MESH_MONKEY")
class VIEW3D_PT_tools_meshedit(View3DPanel, Panel):
+ bl_category = "Basic"
bl_context = "mesh_edit"
bl_label = "Mesh Tools"
@@ -363,6 +364,7 @@ class VIEW3D_PT_tools_meshedit(View3DPanel, Panel):
class VIEW3D_PT_tools_meshedit_options(View3DPanel, Panel):
+ bl_category = "Options"
bl_context = "mesh_edit"
bl_label = "Mesh Options"