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:
authorCampbell Barton <ideasman42@gmail.com>2012-08-10 15:38:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-10 15:38:52 +0400
commitc8cdad174899e7716abe17d5cd161c9bbe11af15 (patch)
tree096a63d584798479a40206c70eb1a89a0d1152ff /source/blender/editors/mesh/editmesh_tools.c
parent6a1a5ad08b593953ab0ada04b2883687e85bb744 (diff)
fix [#32300] Convex Hull Poll Shouldn't Require 3D View
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 6db8960977a..13c48c7f51d 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -5301,7 +5301,7 @@ void MESH_OT_convex_hull(wmOperatorType *ot)
/* api callbacks */
ot->exec = edbm_convex_hull_exec;
- ot->poll = EM_view3d_poll;
+ ot->poll = ED_operator_editmesh;
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;