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-02-02 21:38:14 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2014-02-02 21:38:14 +0400
commit97c2be30095be6c88fe4d9fcf5bccf905f4d3eb4 (patch)
treebcb5c05f4d6da2513a1c334a6770a375234b2169 /release
parentc1bdf69805c8704988260d84031bff8b37631e06 (diff)
Remove Grease Pencil panels from toolbar, has own tab
The Grease Pencil has it's own dedicated tab. It's no longer necessary to draw in a panel for each object type.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 2d1185fa8be..74886120212 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -492,7 +492,6 @@ class VIEW3D_PT_tools_curveedit(View3DPanel, Panel):
draw_repeat_tools(context, layout)
- draw_gpencil_tools(context, layout)
# ********** default tools for editmode_surface ****************
@@ -531,8 +530,6 @@ class VIEW3D_PT_tools_surfaceedit(View3DPanel, Panel):
draw_repeat_tools(context, layout)
- draw_gpencil_tools(context, layout)
-
# ********** default tools for editmode_text ****************
@@ -587,8 +584,6 @@ class VIEW3D_PT_tools_armatureedit(View3DPanel, Panel):
draw_repeat_tools(context, layout)
- draw_gpencil_tools(context, layout)
-
class VIEW3D_PT_tools_armatureedit_options(View3DPanel, Panel):
bl_context = "armature_edit"
@@ -618,8 +613,6 @@ class VIEW3D_PT_tools_mballedit(View3DPanel, Panel):
draw_repeat_tools(context, layout)
- draw_gpencil_tools(context, layout)
-
# ********** default tools for editmode_lattice ****************
@@ -642,8 +635,6 @@ class VIEW3D_PT_tools_latticeedit(View3DPanel, Panel):
draw_repeat_tools(context, layout)
- draw_gpencil_tools(context, layout)
-
# ********** default tools for pose-mode ****************
@@ -688,8 +679,6 @@ class VIEW3D_PT_tools_posemode(View3DPanel, Panel):
draw_repeat_tools(context, layout)
- draw_gpencil_tools(context, layout)
-
class VIEW3D_PT_tools_posemode_options(View3DPanel, Panel):
bl_category = "Options"