Fix #3059. Implement IfcTester prohibited string templates (taking into account double negatives)

This commit is contained in:
Dion Moult
2023-11-28 17:20:20 +11:00
parent a464551644
commit 304acdccef
4 changed files with 38 additions and 6 deletions
@@ -82,7 +82,7 @@ class BIM_PT_styles(Panel):
row.operator("bim.remove_style", text="", icon="X").style = style.ifc_definition_id
if self.props.style_type == "IfcSurfaceStyle":
self.layout.label(text="Choose current style's aspect to edit:")
self.layout.label(text="Surface Style Element:")
col = self.layout.column(align=True)
row = col.row(align=True)
@@ -52,7 +52,7 @@ class IfcTesterProperties(PropertyGroup):
ifc_file: StringProperty(default="", name="IFC File")
should_load_from_memory: BoolProperty(default=False, name="Load from Memory")
generate_html_report: BoolProperty(default=False, name="Generate HTML report")
flag : BoolProperty(default=False, name="Flag failed entities")
flag: BoolProperty(default=False, name="Flag Failed Entities")
active_specification_index: IntProperty(name="Active Specification Index", update=update_active_specification_index)
old_index: IntProperty(name="", default=0)
active_failed_entity_index: IntProperty(name="Active Failed Entity Index")