From 58646f10a17ca72fb55841084375ba6bcfdaef2a Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 31 Jan 2012 16:24:02 +0000 Subject: Hide internal property of knife_cut operator --- source/blender/editors/mesh/editmesh_loop.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/mesh') diff --git a/source/blender/editors/mesh/editmesh_loop.c b/source/blender/editors/mesh/editmesh_loop.c index d9854ea7678..19adaa977bf 100644 --- a/source/blender/editors/mesh/editmesh_loop.c +++ b/source/blender/editors/mesh/editmesh_loop.c @@ -407,7 +407,8 @@ void MESH_OT_knife_cut(wmOperatorType *ot) // doesn't work atm.. RNA_def_enum(ot->srna, "corner_cut_pattern", corner_type_items, SUBDIV_CORNER_INNERVERT, "Corner Cut Pattern", "Topology pattern to use to fill a face after cutting across its corner"); /* internal */ - RNA_def_int(ot->srna, "cursor", BC_KNIFECURSOR, 0, INT_MAX, "Cursor", "", 0, INT_MAX); + prop = RNA_def_int(ot->srna, "cursor", BC_KNIFECURSOR, 0, INT_MAX, "Cursor", "", 0, INT_MAX); + RNA_def_property_flag(prop, PROP_HIDDEN); } /* ******************************************************* */ -- cgit v1.2.3