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>2019-03-12 00:22:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-12 00:22:38 +0300
commit34781e06b7bc9d8d29ab54dd402ed3f5e065ce21 (patch)
tree04d83dce5705dac650d0fb92d1e506131460f74a /release
parentfd76b8d8253fe883c3a421862e1efc497954308e (diff)
UI: correct context menu edge selection check
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 8daf350329b..b006599d668 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2959,7 +2959,9 @@ class VIEW3D_MT_edit_mesh_specials(Menu):
col.operator("mesh.bevel", text="Bevel Edges").vertex_only = False
if selected_edges_len >= 2:
col.operator("mesh.bridge_edge_loops")
+ if selected_edges_len >= 1:
col.operator("mesh.edge_face_add", text="New Face from Edges")
+ if selected_edges_len >= 2:
col.operator("mesh.fill")
col.separator()