From a34a05262ea301e4fc978c96b9a19002dba26c1f Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Wed, 29 Apr 2020 18:11:44 +1000 Subject: [PATCH] Minor fix --- src/ifcblenderexport/blenderbim/bim/import_ifc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcblenderexport/blenderbim/bim/import_ifc.py b/src/ifcblenderexport/blenderbim/bim/import_ifc.py index 366a708fe0..6380a68a1b 100644 --- a/src/ifcblenderexport/blenderbim/bim/import_ifc.py +++ b/src/ifcblenderexport/blenderbim/bim/import_ifc.py @@ -266,7 +266,7 @@ class IfcImporter(): self.ifc_import_settings.should_ignore_site_coordinates = True if self.is_ifc_class_far_away('IfcBuilding'): self.ifc_import_settings.should_ignore_building_coordinates = True - elif applications[0].ApplicationFullName == '12D Model': + elif applications[0].ApplicationFullName.lower() == '12d model': self.ifc_import_settings.should_reset_absolute_coordinates = True elif 'Civil 3D' in applications[0].ApplicationFullName: self.ifc_import_settings.should_reset_absolute_coordinates = True