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-08-15 13:32:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-08-15 13:35:14 +0400
commit27b4a1f7dda7cfb487cc8f27764235e46955ca58 (patch)
tree4945e4c8b858909b0e0c0193850320e9eca1b659
parent983cbafd1877f8dbaae60b064a14e27b5b640f18 (diff)
Correction to last commit, rna naming
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py2
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index b72982344c9..efc430db50f 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -820,7 +820,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.prop(md, "use_rim")
col_rim = col.column()
col_rim.active = md.use_rim
- col_rim.prop(md, "rim_only")
+ col_rim.prop(md, "use_rim_only")
col.separator()
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index d47bf95391a..6fd89e53b43 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -2609,7 +2609,7 @@ static void rna_def_modifier_solidify(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Flip Normals", "Invert the face direction");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
- prop = RNA_def_property(srna, "rim_only", PROP_BOOLEAN, PROP_NONE);
+ prop = RNA_def_property(srna, "use_rim_only", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_SOLIDIFY_NOSHELL);
RNA_def_property_ui_text(prop, "Only Rim", "Only add the rim to the original data");
RNA_def_property_update(prop, 0, "rna_Modifier_update");