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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-05-07 16:32:37 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-05-07 16:32:37 +0300
commita2eb94b47032502a65027db4b241a40e56f767eb (patch)
tree47707a13741bf395e11263f3ee9ff7278e478d93 /source/blender/blenkernel/intern/mesh_remap.c
parentaa3fc89257f839260e7577881f399011a709badf (diff)
Fix T44631: Custom Normal Data Transfer crash.
Own stupid mistake in rBcdabf7e3...
Diffstat (limited to 'source/blender/blenkernel/intern/mesh_remap.c')
-rw-r--r--source/blender/blenkernel/intern/mesh_remap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mesh_remap.c b/source/blender/blenkernel/intern/mesh_remap.c
index 36b8a3264e9..0ed10687fae 100644
--- a/source/blender/blenkernel/intern/mesh_remap.c
+++ b/source/blender/blenkernel/intern/mesh_remap.c
@@ -1304,7 +1304,7 @@ void BKE_mesh_remap_calc_loops_from_dm(
/* A same vert may be at the boundary of several islands! Hence, we have to ensure
* poly/loop we are currently considering *belongs* to current island! */
- if (island_store.items_to_islands[lidx_src] != tindex) {
+ if (use_islands && island_store.items_to_islands[lidx_src] != tindex) {
continue;
}