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 /release/scripts/ui
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 'release/scripts/ui')
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py
index 44c0b6ef0a7..47660810ea9 100644
--- a/release/scripts/ui/space_view3d_toolbar.py
+++ b/release/scripts/ui/space_view3d_toolbar.py
@@ -176,7 +176,9 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel, bpy.types.Panel):
mesh = context.active_object.data
col = layout.column(align=True)
col.prop(mesh, "use_mirror_x")
- col.prop(mesh, "use_mirror_topology")
+ sub = col.column()
+ sub.active = ob.data.use_mirror_x
+ sub.prop(mesh, "use_mirror_topology")
ts = context.tool_settings