mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
Fixed error on drawing tester UI
Error was:
Traceback (most recent call last):
File "\3.6\scripts\addons\blenderbim\bim\module\tester\ui.py", line 39, in draw
row.prop(self.props, "should_load_from_memory")
AttributeError: 'BIM_PT_tester' object has no attribute 'props'
This commit is contained in:
@@ -36,7 +36,7 @@ class BIM_PT_tester(Panel):
|
||||
|
||||
if tool.Ifc.get():
|
||||
row = self.layout.row()
|
||||
row.prop(self.props, "should_load_from_memory")
|
||||
row.prop(props, "should_load_from_memory")
|
||||
|
||||
row = self.layout.row()
|
||||
row.prop(props, "generate_html_report")
|
||||
|
||||
Reference in New Issue
Block a user