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:
authorPhilipp Oeser <info@graphics-engineer.com>2018-12-04 16:42:08 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2018-12-04 16:42:08 +0300
commit245065460f3381e8e3375464ec5ff3ce5b0ce3d6 (patch)
tree0711ab4b4a37fe4e0d114412df2bf37c22939593
parent3d013f7b10b6837ab29eccf9a203477e13d278a2 (diff)
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
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 7f4c9f20283..54a0245fc05 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -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"