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-06-28 21:10:25 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-06-28 21:10:25 +0400
commite5ff9cced440708c34a48a274cc8dc24ff3b2d49 (patch)
treea4b5934e1d84ca8ad7c78945bd464455a1239c08 /release
parent5d413b523a92ee70245a43568cc350dd56fa42e4 (diff)
weight Paint: moved Auto Normalize and Multipaint options below Blend selector
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 7bc6d476a4b..513eeb131fd 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -726,8 +726,6 @@ class VIEW3D_PT_tools_brush(Panel, View3DPaintPanel):
# Weight Paint Mode #
elif context.weight_paint_object and brush:
- layout.prop(toolsettings, "use_auto_normalize", text="Auto Normalize")
- layout.prop(toolsettings, "use_multipaint", text="Multi-Paint")
col = layout.column()
@@ -746,6 +744,10 @@ class VIEW3D_PT_tools_brush(Panel, View3DPaintPanel):
col.prop(brush, "vertex_tool", text="Blend")
+ col = layout.column()
+ col.prop(toolsettings, "use_auto_normalize", text="Auto Normalize")
+ col.prop(toolsettings, "use_multipaint", text="Multi-Paint")
+
# Vertex Paint Mode #
elif context.vertex_paint_object and brush:
col = layout.column()