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:
authorCampbell Barton <ideasman42@gmail.com>2020-03-31 11:44:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-31 11:45:26 +0300
commitd8217ec6d05af47ae53a0aa8a2584fc8dbe39827 (patch)
tree08b0501336be4cf7c99705da3fb58d33e850d228 /source/blender/editors
parent039d619c760e1dccdc2d1674c30a300a3a21e312 (diff)
UI: improve names for mesh split operations
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 5a04822613e..1a25e582859 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -1902,12 +1902,12 @@ void MESH_OT_edge_split(wmOperatorType *ot)
/* properties */
static const EnumPropertyItem merge_type_items[] = {
- {BM_EDGE, "EDGE", 0, "Edges", "Split along selected edges"},
+ {BM_EDGE, "EDGE", 0, "Faces by Edges", "Split faces along selected edges"},
{BM_VERT,
"VERT",
0,
- "Edges from Vertices",
- "Split all edges connected to selected vertices"},
+ "Faces & Edges by Vertices",
+ "Split faces & edges connected to selected vertices"},
{0, NULL, 0, NULL, NULL},
};