Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mesh_extra_tools/mesh_select_tools/mesh_index_select.py')
-rw-r--r--mesh_extra_tools/mesh_select_tools/mesh_index_select.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mesh_extra_tools/mesh_select_tools/mesh_index_select.py b/mesh_extra_tools/mesh_select_tools/mesh_index_select.py
index cd558e85..492ff825 100644
--- a/mesh_extra_tools/mesh_select_tools/mesh_index_select.py
+++ b/mesh_extra_tools/mesh_select_tools/mesh_index_select.py
@@ -22,7 +22,7 @@ from bpy.props import (
class SelVertEdgeFace(Operator):
bl_idname = "mesh.select_vert_edge_face_index"
bl_label = "Select mesh index"
- bl_description = "Select Vertices, Edges, Faces by index"
+ bl_description = "Select Vertices, Edges, Faces by their indices"
bl_options = {"REGISTER", "UNDO"}
select_type = EnumProperty(
@@ -59,7 +59,6 @@ class SelVertEdgeFace(Operator):
description="Start from no previous selection\n"
"If unchecked the previous selection is kept"
)
-
delta_text = {'VERT': "Use Cursor",
'EDGE': "Use Edges' Length",
'FACE': "Use Faces' Area"}