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:
authorSergey Sharybin <sergey.vfx@gmail.com>2010-03-14 11:15:20 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2010-03-14 11:15:20 +0300
commit7da0c4c699f939c182cab4d22d692043ef2cb3c5 (patch)
tree3b3f0303c3461bc4db90a0f3120b0923d057ccb8 /source/blender/blenkernel/intern/modifier.c
parent5cf623934fcb7581327ea1fc239e3e677dcac705 (diff)
Fix #21599: Duplicating an object with solidify doesnt copy the flags correctly
Someone forgot to copy solidify modifier's flag.
Diffstat (limited to 'source/blender/blenkernel/intern/modifier.c')
-rw-r--r--source/blender/blenkernel/intern/modifier.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c
index c5a420b85a8..68087cb553c 100644
--- a/source/blender/blenkernel/intern/modifier.c
+++ b/source/blender/blenkernel/intern/modifier.c
@@ -5697,6 +5697,7 @@ static void solidifyModifier_copyData(ModifierData *md, ModifierData *target)
tsmd->crease_inner = smd->crease_inner;
tsmd->crease_outer = smd->crease_outer;
tsmd->crease_rim = smd->crease_rim;
+ tsmd->flag = smd->flag;
strcpy(tsmd->defgrp_name, smd->defgrp_name);
}