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:
authorSergey Sharybin <sergey.vfx@gmail.com>2010-05-10 21:32:11 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2010-05-10 21:32:11 +0400
commit8d9e55122f94712258b1a4e4d6aacff15864fe31 (patch)
tree32e50afac3c9f49055daedf31ea0c4e0dfcf6d02 /release/scripts/ui/space_view3d.py
parent50b412939836b3033841fb82918c67ddbcf5c399 (diff)
"Every Nth number of Points" operator for curves/surfaces
This is replacement of old "Select every Nth" operator with de-select strategy to make the same behaviour as for meshes.
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 a8fc4eb89af..8be176843fc 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -523,7 +523,7 @@ class VIEW3D_MT_select_edit_curve(bpy.types.Menu):
layout.operator("curve.select_all", text="Select/Deselect All")
layout.operator("curve.select_inverse")
layout.operator("curve.select_random")
- layout.operator("curve.select_every_nth")
+ layout.operator("curve.select_nth", text="Every Nth Number of Points")
layout.separator()
@@ -552,7 +552,7 @@ class VIEW3D_MT_select_edit_surface(bpy.types.Menu):
layout.operator("curve.select_all", text="Select/Deselect All")
layout.operator("curve.select_inverse")
layout.operator("curve.select_random")
- layout.operator("curve.select_every_nth")
+ layout.operator("curve.select_nth", text="Every Nth Number of Points")
layout.separator()