From e5ff9cced440708c34a48a274cc8dc24ff3b2d49 Mon Sep 17 00:00:00 2001 From: Gaia Clary Date: Fri, 28 Jun 2013 17:10:25 +0000 Subject: weight Paint: moved Auto Normalize and Multipaint options below Blend selector --- release/scripts/startup/bl_ui/space_view3d_toolbar.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'release') 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() -- cgit v1.2.3