From ebd04f581d0e3de7b5815d0394d554bfbd91be55 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 17 Jul 2014 17:12:32 +1000 Subject: [PATCH] Correct error in recelty added BM_face_split_edgenet Was copying UV's to unrelated faces --- source/blender/bmesh/intern/bmesh_mods.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/bmesh/intern/bmesh_mods.c b/source/blender/bmesh/intern/bmesh_mods.c index 22a0374faa4..c9e367d5f43 100644 --- a/source/blender/bmesh/intern/bmesh_mods.c +++ b/source/blender/bmesh/intern/bmesh_mods.c @@ -868,7 +868,7 @@ bool BM_face_split_edgenet( l_iter = l_first = BM_FACE_FIRST_LOOP(f); do { BM_ITER_ELEM (l_other, &iter, l_iter->v, BM_LOOPS_OF_VERT) { - if (l_other->f != f) { + if ((l_other->f != f) && BM_ELEM_API_FLAG_TEST(l_other->f, FACE_NET)) { CustomData_bmesh_copy_data(&bm->ldata, &bm->ldata, l_iter->head.data, &l_other->head.data); }