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:
authorMartin Poirier <theeth@yahoo.com>2010-04-24 22:11:28 +0400
committerMartin Poirier <theeth@yahoo.com>2010-04-24 22:11:28 +0400
commitb31e9b764e397bec7f9801a57004ece5d5873679 (patch)
treea11b0fcc9ee0796e6d1a7d851fca228dbaaf6022 /source/blender/editors/mesh/editmesh_tools.c
parent5b4e62a977ba1cbe0f2b66a28c5a228da3b9faa6 (diff)
[#21218] Strange Extrude bug...
Hide Extrude Type property (it's not supposed to be changed manually).
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 823bc3eea06..3555bfc8cad 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -797,6 +797,7 @@ void MESH_OT_extrude(wmOperatorType *ot)
/* properties */
prop= RNA_def_enum(ot->srna, "type", extrude_items, 0, "Type", "");
+ RNA_def_property_flag(prop, PROP_HIDDEN);
RNA_def_enum_funcs(prop, extrude_itemf);
ot->prop= prop;
}