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>2013-04-14 02:12:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-14 02:12:55 +0400
commita298cac9523395987aa9816b7fda7bb53b46912a (patch)
tree3e16c9b496ebf1a24ded862d7ebe2564fa18a6b4 /release
parentdbf4328f3fba5e1fbd39422d6a322f752e2e122e (diff)
show weight-display options in editmode.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 0289b6e268e..5eded5ef68d 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -242,6 +242,11 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel, Panel):
col.label("Double Threshold:")
col.prop(tool_settings, "double_threshold", text="")
+ if mesh.show_weight:
+ col.label("Show Zero Weights:")
+ rowsub = col.row()
+ rowsub.prop(tool_settings, "vertex_group_user", expand=True)
+
# ********** default tools for editmode_curve ****************