[Bf-blender-cvs] [d8217ec6d05] master: UI: improve names for mesh split operations

Campbell Barton noreply at git.blender.org
Tue Mar 31 10:47:20 CEST 2020


Commit: d8217ec6d05af47ae53a0aa8a2584fc8dbe39827
Author: Campbell Barton
Date:   Tue Mar 31 19:44:47 2020 +1100
Branches: master
https://developer.blender.org/rBd8217ec6d05af47ae53a0aa8a2584fc8dbe39827

UI: improve names for mesh split operations

===================================================================

M	source/blender/editors/mesh/editmesh_tools.c

===================================================================

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},
   };



More information about the Bf-blender-cvs mailing list