From 114d930bf03a739343c1c45f00f6f4c77469ef8a Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Mon, 3 May 2010 07:42:40 +0000 Subject: [PATCH] Fix for renaming particle selection operators a little while ago --- release/scripts/ui/space_view3d.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 16e4141e2ff..7b78d6c4299 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -993,8 +993,8 @@ class VIEW3D_MT_particle_specials(bpy.types.Menu): layout.separator() if particle_edit.selection_mode == 'POINT': layout.operator("particle.subdivide") - layout.operator("particle.select_first") - layout.operator("particle.select_last") + layout.operator("particle.select_roots") + layout.operator("particle.select_tips") layout.operator("particle.remove_doubles")