Skip to content

Commit

Permalink
Arch: fix in new ifc-importer
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach authored and yorikvanhavre committed Aug 16, 2014
1 parent 6556bc7 commit 6436b29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Mod/Arch/importIFC.py
Expand Up @@ -167,9 +167,9 @@ def insert(filename,docname,skip=[]):
obj = None
baseobj = None

if (ptype == "IfcOpeningElement") and (not SEPARATE_OPENINGS): break
if pid in skip: break
if ptype in SKIP: break
if (ptype == "IfcOpeningElement") and (not SEPARATE_OPENINGS): continue
if pid in skip: continue
if ptype in SKIP: continue

brep = ifcopenshell.create_shape(product,shape_attributes)
if brep:
Expand Down

0 comments on commit 6436b29

Please sign in to comment.