projects
/
blender.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b4e62a
)
[#21218] Strange Extrude bug...
author
Martin Poirier <theeth@yahoo.com>
Sat, 24 Apr 2010 18:11:28 +0000
(18:11 +0000)
committer
Martin Poirier <theeth@yahoo.com>
Sat, 24 Apr 2010 18:11:28 +0000
(18:11 +0000)
Hide Extrude Type property (it's not supposed to be changed manually).
source/blender/editors/mesh/editmesh_tools.c
patch
|
blob
|
history
diff --git
a/source/blender/editors/mesh/editmesh_tools.c
b/source/blender/editors/mesh/editmesh_tools.c
index 823bc3eea065782799688f0f8b0eb5af8a7396a1..3555bfc8cad7f088472535397ec5df23151a5b3b 100644
(file)
--- 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;
}