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>2013-08-18 18:35:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-18 18:35:53 +0400
commite2dc3313fe66e9091a57b5768ab2a43f8972faa7 (patch)
treebcea8df1496896cfdbb4e1e66c3aacab7adc9898
parentb9ce23106015e6b23a1ea8cae8049f922c732587 (diff)
correct recent commit
-rw-r--r--source/blender/bmesh/operators/bmo_fill_holes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_fill_holes.c b/source/blender/bmesh/operators/bmo_fill_holes.c
index 40a682e790d..844205f5b91 100644
--- a/source/blender/bmesh/operators/bmo_fill_holes.c
+++ b/source/blender/bmesh/operators/bmo_fill_holes.c
@@ -77,7 +77,7 @@ static BMFace *bm_face_from_eloop(BMesh *bm, struct BMEdgeLoopStore *el_store)
} while ((node = node->next));
f = BM_face_create_ngon_verts(bm, f_verts, len, 0, true, false);
- BM_face_copy_shared(bm, f);
+ BM_face_copy_shared(bm, f, NULL, NULL);
l = bm_face_find_longest_loop_manifold(f);
if (l) {