Arch: IFC import, fix regression included with 5da9197b

This commit is contained in:
Bernd Hahnebach
2020-02-06 11:22:24 +01:00
committed by GitHub
parent 0532df4937
commit 78039eb0de

View File

@@ -410,6 +410,7 @@ def getColorFromStyledItem(styled_item):
if rgb_color is not None:
col = [rgb_color.Red, rgb_color.Green, rgb_color.Blue]
col.append(int(transparency) if transparency else 0)
col = tuple(col)
# print(col)
else:
col = None