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:
authorMatt Ebb <matt@mke3.net>2010-05-03 11:42:40 +0400
committerMatt Ebb <matt@mke3.net>2010-05-03 11:42:40 +0400
commit114d930bf03a739343c1c45f00f6f4c77469ef8a (patch)
treefa66caeec46fb3a1c09fdf6abc2c754dcc687629 /release/scripts/ui/space_view3d.py
parentb18d37729234e3995442e19dd46b110e18b80f7d (diff)
Fix for renaming particle selection operators a little while ago
Diffstat (limited to 'release/scripts/ui/space_view3d.py')
-rw-r--r--release/scripts/ui/space_view3d.py4
1 files 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")