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>2011-03-15 12:04:26 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2011-03-15 12:04:26 +0300
commitb8f96b191b8339fbb5621bf4784150c1249084f6 (patch)
tree5cb8f2f32b025a4dfb31a8a7c9c98457754843fc /source/blender/makesrna/intern/rna_mesh.c
parent2bd375dd5214ac09a14f53733faea0f58397ae7f (diff)
"Fix" #26445: edit mode vertex distortion
Discussed with Campbell, it's not actually bug and it's more about limitation of topology mirror. It will work properly when both sides of mesh have matching unique topology. Added note to tooltip, so now unpredictable behaviour shouldn't confuse users so much. Also gray out "Topology mirror" when "X Mirror" is disabled.
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index 4440985860b..03c79af1907 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -2045,7 +2045,7 @@ static void rna_def_mesh(BlenderRNA *brna)
prop= RNA_def_property(srna, "use_mirror_topology", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "editflag", ME_EDIT_MIRROR_TOPO);
- RNA_def_property_ui_text(prop, "Topology Mirror", "Use topology based mirroring");
+ RNA_def_property_ui_text(prop, "Topology Mirror", "Use topology based mirroring. For when both sides of mesh have matching, unique topology");
prop= RNA_def_property(srna, "use_paint_mask", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "editflag", ME_EDIT_PAINT_MASK);