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:
authorDaniel Salazar <zanqdo@gmail.com>2010-03-20 08:14:22 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-03-20 08:14:22 +0300
commit504745c39922b2a8da840789e30cf9ed58356e08 (patch)
treec88614781287c5420e2f54e4761a8e194e7f8159 /release
parent15bd165ca0effa4d0900499eec6f3058c2f18b18 (diff)
Operator name improvements in select menu
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index d8d91f41bf7..2e10470c5f7 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -471,8 +471,8 @@ class VIEW3D_MT_select_edit_mesh(bpy.types.Menu):
layout.separator()
- layout.operator("mesh.select_random", text="Random...")
- layout.operator("mesh.select_nth", text="Select Nth...")
+ layout.operator("mesh.select_random", text="Random")
+ layout.operator("mesh.select_nth", text="Every N Number of Verts")
layout.operator("mesh.edges_select_sharp", text="Sharp Edges")
layout.operator("mesh.faces_select_linked_flat", text="Linked Flat Faces")
layout.operator("mesh.faces_select_interior", text="Interior Faces")
@@ -485,7 +485,7 @@ class VIEW3D_MT_select_edit_mesh(bpy.types.Menu):
if context.scene.tool_settings.mesh_selection_mode[2] == False:
layout.operator("mesh.select_non_manifold", text="Non Manifold")
layout.operator("mesh.select_by_number_vertices", text="Loose Verts/Edges").type = 'OTHER'
- layout.operator("mesh.select_similar", text="Similar...")
+ layout.operator("mesh.select_similar", text="Similar")
layout.separator()