Skip to content

Commit

Permalink
Arch: small fix in IFC explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Apr 11, 2015
1 parent 00daa1c commit 5c079f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Mod/Arch/importIFC.py
Expand Up @@ -161,6 +161,8 @@ def explore(filename=None):
item.setText(0,str(entity.id()))
if entity.is_a() in ["IfcWall","IfcWallStandardCase"]:
item.setIcon(1,QtGui.QIcon(":icons/Arch_Wall_Tree.svg"))
elif entity.is_a() in ["IfcBuildingElementProxy"]:
item.setIcon(1,QtGui.QIcon(":icons/Arch_Component.svg"))
elif entity.is_a() in ["IfcColumn","IfcColumnStandardCase","IfcBeam","IfcBeamStandardCase","IfcSlab","IfcFooting","IfcPile","IfcTendon"]:
item.setIcon(1,QtGui.QIcon(":icons/Arch_Structure_Tree.svg"))
elif entity.is_a() in ["IfcSite"]:
Expand Down

0 comments on commit 5c079f8

Please sign in to comment.