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>2014-05-22 10:43:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-22 10:43:38 +0400
commitd27d982657b6f544a451b5192f912d36a64eb06b (patch)
treeff8219bc93f0db1e32277d60a713cc951e7fc8c0 /source/blender/modifiers
parent07ffd9c79089d200544fde120d18f7c2cd861c08 (diff)
Fix T40215: Boolean looses bevel width
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_boolean_util.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_boolean_util.c b/source/blender/modifiers/intern/MOD_boolean_util.c
index 4b6d960584c..9b326fe8c5f 100644
--- a/source/blender/modifiers/intern/MOD_boolean_util.c
+++ b/source/blender/modifiers/intern/MOD_boolean_util.c
@@ -789,6 +789,7 @@ DerivedMesh *NewBooleanDerivedMesh(DerivedMesh *dm, struct Object *ob,
/* Free memory used by export mesh. */
BLI_ghash_free(export_data.material_hash, NULL, NULL);
+ output_dm->cd_flag |= dm->cd_flag | dm_select->cd_flag;
output_dm->dirty |= DM_DIRTY_NORMALS;
carve_deleteMesh(output);
}