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-07-11 18:21:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-11 18:21:50 +0400
commitc098557240ec0b94e510e87ab6116356a1e90904 (patch)
tree5d274ad5f0f96449ed2f877c81e487776d42e75d /source/blender/bmesh/intern/bmesh_interp.c
parentb2a02555390ece7167523412262e417d70cdec3c (diff)
fix [#36100] bevel lost selection
interpolating loop was copying face attributes including selection, checked all users of this function and its safe to remove the call (which is bad to begin with).
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_interp.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_interp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/bmesh/intern/bmesh_interp.c b/source/blender/bmesh/intern/bmesh_interp.c
index c579a427313..446d32de5d2 100644
--- a/source/blender/bmesh/intern/bmesh_interp.c
+++ b/source/blender/bmesh/intern/bmesh_interp.c
@@ -640,8 +640,6 @@ void BM_loop_interp_from_face(BMesh *bm, BMLoop *target, BMFace *source,
/* convert the 3d coords into 2d for projection */
axis_dominant_v3_to_m3(axis_mat, source->no);
- BM_elem_attrs_copy(bm, bm, source, target->f);
-
i = 0;
l_iter = l_first = BM_FACE_FIRST_LOOP(source);
do {