From eb0322759cdd3d00db97e401138c3864f7840503 Mon Sep 17 00:00:00 2001 From: CyrilWaechter Date: Sat, 26 Nov 2022 05:37:00 +0100 Subject: [PATCH] Allow ifcpatch to work with .ifcZIP | .ifcXML Closes #2350 --- src/blenderbim/blenderbim/bim/module/patch/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/module/patch/operator.py b/src/blenderbim/blenderbim/bim/module/patch/operator.py index 58a9e45f72..14a7067cf3 100644 --- a/src/blenderbim/blenderbim/bim/module/patch/operator.py +++ b/src/blenderbim/blenderbim/bim/module/patch/operator.py @@ -34,7 +34,7 @@ class SelectIfcPatchInput(bpy.types.Operator): bl_idname = "bim.select_ifc_patch_input" bl_label = "Select IFC Patch Input" bl_options = {"REGISTER", "UNDO"} - filter_glob: bpy.props.StringProperty(default="*.ifc", options={"HIDDEN"}) + filter_glob: bpy.props.StringProperty(default="*.ifc;*.ifcZIP;*.ifcXML", options={"HIDDEN"}) filepath: bpy.props.StringProperty(subtype="FILE_PATH") def execute(self, context):