mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-18 14:31:39 +00:00
Validating IFCs UI now moved over into debug panel
This commit is contained in:
@@ -13,8 +13,12 @@ class BIM_PT_debug(Panel):
|
|||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
layout = self.layout
|
layout = self.layout
|
||||||
|
|
||||||
scene = context.scene
|
props = context.scene.BIMDebugProperties
|
||||||
props = scene.BIMDebugProperties
|
|
||||||
|
row = self.layout.row(align=True)
|
||||||
|
row.prop(context.scene.BIMProperties, "ifc_file", text="")
|
||||||
|
row.operator("bim.validate_ifc_file", icon="CHECKMARK", text="")
|
||||||
|
row.operator("bim.select_ifc_file", icon="FILE_FOLDER", text="")
|
||||||
|
|
||||||
row = layout.row()
|
row = layout.row()
|
||||||
row.operator("bim.profile_import_ifc")
|
row.operator("bim.profile_import_ifc")
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ class Data:
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def purge(cls):
|
def purge(cls):
|
||||||
cls.products = False
|
cls.products = {}
|
||||||
cls.representations = {}
|
cls.representations = {}
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ class BIM_PT_project(Panel):
|
|||||||
row = self.layout.row(align=True)
|
row = self.layout.row(align=True)
|
||||||
row.prop(props, "ifc_file", text="")
|
row.prop(props, "ifc_file", text="")
|
||||||
row.operator("bim.reload_ifc_file", icon="FILE_REFRESH", text="")
|
row.operator("bim.reload_ifc_file", icon="FILE_REFRESH", text="")
|
||||||
row.operator("bim.validate_ifc_file", icon="CHECKMARK", text="")
|
|
||||||
row.operator("bim.select_ifc_file", icon="FILE_FOLDER", text="")
|
row.operator("bim.select_ifc_file", icon="FILE_FOLDER", text="")
|
||||||
|
|
||||||
row = self.layout.row(align=True)
|
row = self.layout.row(align=True)
|
||||||
|
|||||||
Reference in New Issue
Block a user