Remove the Draw Curve operator from the Add menu

this operator was only working in editmode and we now have a dedicated
tool for this.

Fixes T58495

thanx @billreynish for usability advice
This commit is contained in:
Philipp Oeser 2018-12-04 14:42:08 +01:00
parent 3d013f7b10
commit 245065460f
Notes: blender-bot 2023-02-14 04:47:24 +01:00
Referenced by issue #58816, Color management Display Device other than sRGB segfaults Blender
Referenced by issue #58495, bpy.ops.curve.draw() fails
1 changed files with 0 additions and 4 deletions

View File

@ -1412,10 +1412,6 @@ class VIEW3D_MT_curve_add(Menu):
layout.operator("curve.primitive_nurbs_circle_add", text="Nurbs Circle", icon='CURVE_NCIRCLE')
layout.operator("curve.primitive_nurbs_path_add", text="Path", icon='CURVE_PATH')
layout.separator()
layout.operator("curve.draw", icon='LINE_DATA')
class VIEW3D_MT_surface_add(Menu):
bl_idname = "VIEW3D_MT_surface_add"