Arch: IFC import, fix regression included with 2bf5d62e

This commit is contained in:
Bernd Hahnebach
2020-02-06 11:22:24 +01:00
committed by GitHub
parent 8fc0d02d5c
commit 0a3fbfec8c

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