bim.override_mesh_separate - fix bug with skip_save

Previously you would use bim.override_mesh_separate from UI with any of the available `type` options, then running operator separately would leading to running this operator from F3 to always choose this options (possibly leading to errors in objects mode)
This commit is contained in:
Andrej730
2025-04-22 18:35:09 +05:00
parent 598dfd75e7
commit d188155fac
@@ -78,6 +78,7 @@ class OverrideMeshSeparate(bpy.types.Operator, tool.Ifc.Operator):
name=blender_type_prop.name,
default=blender_type_prop.default,
items=[(i.identifier, i.name, i.description) for i in blender_type_prop.enum_items],
options={"SKIP_SAVE"},
)
if TYPE_CHECKING: