[#21218] Strange Extrude bug...

Hide Extrude Type property (it's not supposed to be changed manually).
This commit is contained in:
Martin Poirier
2010-04-24 18:11:28 +00:00
parent 5b4e62a977
commit b31e9b764e

View File

@@ -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;
}