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.
This commit is contained in:
Jonathan Williamson
2014-02-02 11:38:14 -06:00
parent c1bdf69805
commit 97c2be3009

View File

@@ -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"