F2: Fix T68342: error "New Face from edges"

This was happening when checking the neighboring face winding [which
could fail if the to-be-generated face is a triangle instead of a
quad].
This commit is contained in:
Philipp Oeser 2019-08-07 17:45:51 +02:00
parent 72599842ab
commit ce63288eaf
Notes: blender-bot 2023-02-14 19:11:02 +01:00
Referenced by issue #68342, F2 error "New Face from edges"
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ def quad_from_edge(bm, edge_sel, context, event):
flip_align = False
if flip_align: # there is a face to which the normal can be aligned
ref_verts = [v for v in normal_edge.link_faces[0].verts]
if v3 in ref_verts:
if v3 in ref_verts and v1 in ref_verts:
va_1 = v3
va_2 = v1
elif normal_edge == edge_sel: