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_tools/__init__.py')
-rw-r--r--mesh_tools/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesh_tools/__init__.py b/mesh_tools/__init__.py
index f93baea9..ff9a60bd 100644
--- a/mesh_tools/__init__.py
+++ b/mesh_tools/__init__.py
@@ -885,7 +885,7 @@ class VIEW3D_MT_edit_mesh_tools(Menu):
props.quad_method = props.ngon_method = 'BEAUTY'
layout.operator("mesh.tris_convert_to_quads")
layout.operator('mesh.vertex_chamfer', text="Vertex Chamfer")
- layout.operator("mesh.bevel", text="Bevel Vertices").vertex_only = True
+ layout.operator("mesh.bevel", text="Bevel Vertices").affect = 'VERTICES'
layout.operator('mesh.offset_edges', text="Offset Edges")
layout.operator('mesh.fillet_plus', text="Fillet Edges")
layout.operator("mesh.face_inset_fillet",
@@ -930,7 +930,7 @@ class VIEW3D_PT_edit_mesh_tools(Panel):
row = col_top.row(align=True)
row.operator("mesh.random_vertices", text="Random Vertices")
row = col_top.row(align=True)
- row.operator("mesh.bevel", text="Bevel Vertices").vertex_only = True
+ row.operator("mesh.bevel", text="Bevel Vertices").affect = 'VERTICES'
# edge - first line
split = col.split(factor=0.80, align=True)
@@ -956,7 +956,7 @@ class VIEW3D_PT_edit_mesh_tools(Panel):
row = col_top.row(align=True)
row.operator("mesh.extrude_edges_move", text="Extrude Edges")
row = col_top.row(align=True)
- row.operator("mesh.bevel", text="Bevel Edges").vertex_only = False
+ row.operator("mesh.bevel", text="Bevel Edges").affect = 'EDGES'
# face - first line
split = col.split(factor=0.80, align=True)