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:
authorAntonioya <blendergit@gmail.com>2018-11-09 21:48:00 +0300
committerAntonioya <blendergit@gmail.com>2018-11-09 21:48:25 +0300
commit03ca79a5094b471e8a25d554360565704ec29b8f (patch)
treee1acde15a461a25d267fb698ad28cb46f063892a /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parent221d07864128687858634aebcfb27798a494557a (diff)
GP: Remove duplicate shapes popover
Now the tools are in Toolbar
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 9ac1023185a..2fb056cdfb7 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1745,30 +1745,6 @@ class VIEW3D_PT_tools_grease_pencil_brushcurves_jitter(View3DPanel, Panel):
layout.template_curve_mapping(gp_settings, "curve_jitter", brush=True)
-# Grease Pencil create shapes
-class VIEW3D_PT_tools_grease_pencil_shapes(View3DPanel, Panel):
- bl_space_type = 'VIEW_3D'
- bl_region_type = 'HEADER'
- bl_label = "Shapes"
-
- @classmethod
- def poll(cls, context):
- ob = context.active_object
- return ob and ob.type == 'GPENCIL'
-
- @staticmethod
- def draw(self, context):
- layout = self.layout
- layout.use_property_split = True
-
- col = layout.column(align=True)
- col.operator("gpencil.primitive", text="Line", icon='IPO_CONSTANT').type = 'LINE'
- col.operator("gpencil.primitive", text="Rectangle", icon='UV_FACESEL').type = 'BOX'
- col.operator("gpencil.primitive", text="Circle", icon='ANTIALIASED').type = 'CIRCLE'
-
- layout.operator("object.gpencil_add", text="Monkey", icon='MONKEY').type = 'MONKEY'
-
-
# Grease Pencil stroke editing tools
class VIEW3D_PT_tools_grease_pencil_edit(GreasePencilStrokeEditPanel, Panel):
bl_space_type = 'VIEW_3D'
@@ -1931,7 +1907,6 @@ classes = (
VIEW3D_PT_tools_grease_pencil_brushcurves_sensitivity,
VIEW3D_PT_tools_grease_pencil_brushcurves_strength,
VIEW3D_PT_tools_grease_pencil_brushcurves_jitter,
- VIEW3D_PT_tools_grease_pencil_shapes,
VIEW3D_PT_tools_grease_pencil_sculpt,
VIEW3D_PT_tools_grease_pencil_weight_paint,
VIEW3D_PT_tools_grease_pencil_paint_appearance,