diff --git a/source/blender/blenkernel/intern/mesh_mapping.c b/source/blender/blenkernel/intern/mesh_mapping.c index 78c0fa184f4..d908a248a28 100644 --- a/source/blender/blenkernel/intern/mesh_mapping.c +++ b/source/blender/blenkernel/intern/mesh_mapping.c @@ -845,7 +845,7 @@ static bool poly_is_island_boundary_smooth_cb(const MPoly *mp, const MPoly *mp_other = (mp == &mpoly_array[edge_poly_map->indices[0]]) ? &mpoly_array[edge_poly_map->indices[1]] : &mpoly_array[edge_poly_map->indices[0]]; - return (mp_other->flag & ME_SMOOTH) != 0; + return (mp_other->flag & ME_SMOOTH) == 0; } return true; }