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:
authorMichael Fox <mfoxdogg@gmail.com>2011-02-10 03:44:26 +0300
committerMichael Fox <mfoxdogg@gmail.com>2011-02-10 03:44:26 +0300
commit0ebf448beea18856defaddbbfd842f0911cca431 (patch)
treee579dd1a30488d0e48a029ad8435c14fbb2a0698 /source/blender/makesrna
parentcbe544fb6cdf6eb41f7b82f5ccc16892f18aa9a9 (diff)
small fix so older files are loaded with merge on in the mirror modifiers
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 3fa06da3e22..01e6d57f2c6 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -778,7 +778,7 @@ static void rna_def_modifier_mirror(BlenderRNA *brna)
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop= RNA_def_property(srna, "use_mirror_merge", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_MIR_MERGE);
+ RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", MOD_MIR_NO_MERGE);
RNA_def_property_ui_text(prop, "Merge Verticies", "Merge vertices within the merge threshold");
RNA_def_property_update(prop, 0, "rna_Modifier_update");