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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-27 16:54:31 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-27 16:54:31 +0400
commit4c2c24aac33e60560515cdff992005d7c2279214 (patch)
treeedcf30e893018ad80a6b90d29e6b258e1296d469 /source/blender/modifiers
parent8f9150871c5f41df948d523c51ed04fc689eaf07 (diff)
Fix #35113: solidify modifier not preserving clamp option on duplicating the
object or modifier.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_solidify.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_solidify.c b/source/blender/modifiers/intern/MOD_solidify.c
index 5eebb9ca52a..d2309e15d10 100644
--- a/source/blender/modifiers/intern/MOD_solidify.c
+++ b/source/blender/modifiers/intern/MOD_solidify.c
@@ -182,6 +182,8 @@ static void copyData(ModifierData *md, ModifierData *target)
SolidifyModifierData *tsmd = (SolidifyModifierData *) target;
tsmd->offset = smd->offset;
tsmd->offset_fac = smd->offset_fac;
+ tsmd->offset_fac_vg = smd->offset_fac_vg;
+ tsmd->offset_clamp = smd->offset_clamp;
tsmd->crease_inner = smd->crease_inner;
tsmd->crease_outer = smd->crease_outer;
tsmd->crease_rim = smd->crease_rim;