This commit is contained in:
Sayanjyoti Das
2025-03-16 17:32:31 +05:30
committed by Dion Moult
parent bfc4490c97
commit 6e7c8ad640
+1 -1
View File
@@ -564,7 +564,7 @@ class AddIfcCircle(bpy.types.Operator):
def has_selected_existing_circle(self, context: bpy.types.Context) -> bool:
obj = self.obj
bm = bmesh.from_edit_mesh(self, mesh)
bm = bmesh.from_edit_mesh(self.mesh)
verts = [v for v in bm.verts if v.select and not v.hide]
if len(verts) != 2:
return False