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:
Andrej730
2023-08-02 11:15:34 +05:00
parent b2db70a2ac
commit f4f04db952
@@ -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")