Docs: correct descriptions

This commit is contained in:
Campbell Barton
2017-10-19 11:09:27 +11:00
parent d85a0a722e
commit 3859f5ec28
3 changed files with 3 additions and 3 deletions

View File

@@ -179,7 +179,7 @@ class MeshSelectNext(Operator):
class MeshSelectPrev(Operator):
"""Select the next element (using selection order)"""
"""Select the previous element (using selection order)"""
bl_idname = "mesh.select_prev_item"
bl_label = "Select Previous Element"
bl_options = {'REGISTER', 'UNDO'}

View File

@@ -784,7 +784,7 @@ void MESH_OT_shortest_path_select(wmOperatorType *ot)
/* identifiers */
ot->name = "Select Shortest Path";
ot->idname = "MESH_OT_shortest_path_select";
ot->description = "Selected vertex path between two vertices";
ot->description = "Selected shortest path between two vertices/edges/faces";
/* api callbacks */
ot->exec = edbm_shortest_path_select_exec;

View File

@@ -2649,7 +2649,7 @@ void MESH_OT_select_linked(wmOperatorType *ot)
/* identifiers */
ot->name = "Select Linked All";
ot->idname = "MESH_OT_select_linked";
ot->description = "Select all vertices linked to the active mesh";
ot->description = "Select all vertices connected to the current selection";
/* api callbacks */
ot->exec = edbm_select_linked_exec;