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:
authorCampbell Barton <ideasman42@gmail.com>2014-01-17 04:39:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-17 07:55:06 +0400
commit7df8452d1a7edbb920e184435d73d90f3df3e3ac (patch)
treec4e9c2937f799ff022c68929d4df56033064851c /source/blender/bmesh/operators/bmo_dupe.c
parent5c74ac2c2a41e70b487321fc6e1afb2625704b1c (diff)
BMesh: add bmesh delete functions that dont depend on operator flags
Diffstat (limited to 'source/blender/bmesh/operators/bmo_dupe.c')
-rw-r--r--source/blender/bmesh/operators/bmo_dupe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_dupe.c b/source/blender/bmesh/operators/bmo_dupe.c
index a5c34f7623b..794c688b26b 100644
--- a/source/blender/bmesh/operators/bmo_dupe.c
+++ b/source/blender/bmesh/operators/bmo_dupe.c
@@ -451,7 +451,7 @@ void bmo_delete_exec(BMesh *bm, BMOperator *op)
/* Mark Buffer */
BMO_slot_buffer_flag_enable(bm, delop->slots_in, "geom", BM_ALL_NOLOOP, DEL_INPUT);
- BMO_remove_tagged_context(bm, DEL_INPUT, BMO_slot_int_get(op->slots_in, "context"));
+ BMO_mesh_delete_oflag_context(bm, DEL_INPUT, BMO_slot_int_get(op->slots_in, "context"));
#undef DEL_INPUT
}