- draw mesh wire faded into the 3D view background color when in particle mode, the mesh and particle selection colors conflict too much making it hard to see particles.

- show proportional editmode button in particle editmode.
This commit is contained in:
2010-01-11 18:10:13 +00:00
parent 9df5bfe404
commit 491e365514
3 changed files with 24 additions and 11 deletions

View File

@@ -65,7 +65,7 @@ class VIEW3D_HT_header(bpy.types.Header):
row.prop(view, "occlude_geometry", text="")
# Proportional editing
if obj and obj.mode in ('OBJECT', 'EDIT'):
if obj and obj.mode in ('OBJECT', 'EDIT', 'PARTICLE_EDIT'):
row = layout.row(align=True)
row.prop(toolsettings, "proportional_editing", text="", icon_only=True)
if toolsettings.proportional_editing != 'DISABLED':