some more corrections to incorrect rna get/set types.

This commit is contained in:
2011-03-22 13:30:20 +00:00
parent 04a63cb393
commit ddb9893ca9
4 changed files with 4 additions and 4 deletions

View File

@@ -744,7 +744,7 @@ static int mesh_extrude_exec(bContext *C, wmOperator *op)
Object *obedit= CTX_data_edit_object(C);
EditMesh *em= BKE_mesh_get_editmesh(obedit->data);
extrude_mesh(obedit, em, op, RNA_int_get(op->ptr, "type"));
extrude_mesh(obedit, em, op, RNA_enum_get(op->ptr, "type"));
DAG_id_tag_update(obedit->data, 0);
WM_event_add_notifier(C, NC_GEOM|ND_DATA, obedit->data);