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:
authorGaia Clary <gaia.clary@machinimatrix.org>2013-07-03 19:57:30 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-07-03 19:57:30 +0400
commitbce00b605c7e517336defa1a3e673944a0dbb07f (patch)
tree73369bc19c50ebee46c5fdb92666f008184fd773 /release
parentc9e56955cf9cb254b2832edc5e7722996b61d284 (diff)
Weight Paint: Enable Transfer Weights tool for Obejcts with no Vertex Groups
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py3
1 files changed, 3 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 444002a0702..535011f184f 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1126,7 +1126,10 @@ class VIEW3D_PT_tools_weightpaint(View3DPanel, Panel):
col.operator("object.vertex_group_clean", text="Clean")
col.operator("object.vertex_group_levels", text="Levels")
col.operator("object.vertex_group_blend", text="Blend")
+ col = layout.column()
col.operator("object.vertex_group_transfer_weight", text="Transfer Weights")
+ col = layout.column()
+ col.active = ob.vertex_groups.active is not None
col.operator("object.vertex_group_limit_total", text="Limit Total")
col.operator("object.vertex_group_fix", text="Fix Deforms")
col.operator("paint.weight_gradient")