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>2012-05-04 21:02:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-04 21:02:02 +0400
commita9ecc86ec935735c66c5fdbd926b4ae2e94eee97 (patch)
tree1ce056ced735b3e2a1e6fb751c2b9f4f1300505a /source/blender/editors/transform
parent0c318c4a476e013ffedf7786ec77e492352d0bcb (diff)
fix [#31205] Loop cut don't slide when hidden faces between
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 81791721015..ae7d02e1cfb 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -4387,7 +4387,7 @@ static int createSlideVerts(TransInfo *t)
BMVert *v, *v2, *first;
BMLoop *l, *l1, *l2;
TransDataSlideVert *sv_array;
- BMBVHTree *btree = BMBVH_NewBVH(em, 0, NULL, NULL);
+ BMBVHTree *btree = BMBVH_NewBVH(em, BMBVH_RESPECT_HIDDEN, NULL, NULL);
SmallHash table;
SlideData *sld = MEM_callocN(sizeof(*sld), "sld");
View3D *v3d = t->sa ? t->sa->spacedata.first : NULL;