From 280236290e3ddcd587c01c787ade5c70fb8f0e13 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Tue, 3 May 2022 17:36:55 +1000 Subject: [PATCH] Fix #2182. File export IFC menu item now defaults to save as to improve usability for new users --- src/blenderbim/blenderbim/bim/module/project/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/module/project/__init__.py b/src/blenderbim/blenderbim/bim/module/project/__init__.py index 7898d1ddf0..1e63507dd1 100644 --- a/src/blenderbim/blenderbim/bim/module/project/__init__.py +++ b/src/blenderbim/blenderbim/bim/module/project/__init__.py @@ -57,7 +57,7 @@ classes = ( def menu_func_export(self, context): op = self.layout.operator(operator.ExportIFC.bl_idname, text="Industry Foundation Classes (.ifc/.ifczip/.ifcjson)") - op.should_save_as = False + op.should_save_as = True def menu_func_import(self, context):