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:
authorBastien Montagne <montagne29@wanadoo.fr>2013-02-26 20:39:41 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-02-26 20:39:41 +0400
commit1c8377b0300a1173fa2a23e6a39e43fffc9424b0 (patch)
tree5913e515f9445ec5c845f992844f725a4e7876b2
parent5d99b1024213f6e2ef76125ea4942fac84e8e88b (diff)
Fix [#34444] Curve: Select Nth Number of Points
Just use default op name, as for meshes!
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index ac3b47ac0af..159cd7ffc84 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -629,7 +629,7 @@ class VIEW3D_MT_select_edit_curve(Menu):
layout.operator("curve.select_all").action = 'TOGGLE'
layout.operator("curve.select_all", text="Inverse").action = 'INVERT'
layout.operator("curve.select_random")
- layout.operator("curve.select_nth", text="Every Nth Number of Points")
+ layout.operator("curve.select_nth")
layout.operator("curve.select_linked", text="Select Linked")
layout.separator()
@@ -659,7 +659,7 @@ class VIEW3D_MT_select_edit_surface(Menu):
layout.operator("curve.select_all").action = 'TOGGLE'
layout.operator("curve.select_all", text="Inverse").action = 'INVERT'
layout.operator("curve.select_random")
- layout.operator("curve.select_nth", text="Every Nth Number of Points")
+ layout.operator("curve.select_nth")
layout.operator("curve.select_linked", text="Select Linked")
layout.separator()