Commit: ebd04f581d0e3de7b5815d0394d554bfbd91be55
Author: Campbell Barton
Date:   Thu Jul 17 17:12:32 2014 +1000
https://developer.blender.org/rBebd04f581d0e3de7b5815d0394d554bfbd91be55

Correct error in recelty added BM_face_split_edgenet

Was copying UV's to unrelated faces

===================================================================

M       source/blender/bmesh/intern/bmesh_mods.c

===================================================================

diff --git a/source/blender/bmesh/intern/bmesh_mods.c 
b/source/blender/bmesh/intern/bmesh_mods.c
index 22a0374..c9e367d 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);
                                }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to