Add "E" to ExtendProfile join_type enum

Generated with the assistance of an AI coding tool.
This commit is contained in:
Ryan Schultz
2026-05-28 09:35:21 -05:00
parent 28913afc12
commit 9013dd2c35
@@ -271,8 +271,8 @@ class ExtendProfile(bpy.types.Operator, tool.Ifc.Operator):
bl_idname = "bim.extend_profile"
bl_label = "Extend Profile"
bl_options = {"REGISTER", "UNDO"}
join_type: bpy.props.EnumProperty(
items=[("-", "Unjoin", ""), ("L", "L", ""), ("V", "V", ""), ("T", "T", "")],
join_type: bpy.props.EnumProperty( # pyright: ignore[reportRedeclaration]
items=[("-", "Unjoin", ""), ("L", "L", ""), ("V", "V", ""), ("T", "T", ""), ("E", "Extend to Cursor", "")],
default="-",
)