mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-17 14:02:27 +00:00
fix: Remove the "animatable" option from the "engine" and "format" property in BIMFMProperties
This commit is contained in:
committed by
Dion Moult
parent
95a7ea8dce
commit
b81031eecf
@@ -42,7 +42,7 @@ class BIMFMProperties(PropertyGroup):
|
|||||||
ifc_files: PointerProperty(type=MultipleFileSelect)
|
ifc_files: PointerProperty(type=MultipleFileSelect)
|
||||||
spreadsheet_files: CollectionProperty(name="Spreadsheets", type=StrProperty)
|
spreadsheet_files: CollectionProperty(name="Spreadsheets", type=StrProperty)
|
||||||
should_load_from_memory: BoolProperty(default=False, name="Load from Memory")
|
should_load_from_memory: BoolProperty(default=False, name="Load from Memory")
|
||||||
engine: EnumProperty(items=get_engine, name="Engine")
|
engine: EnumProperty(items=get_engine, name="Engine", options=set())
|
||||||
format: EnumProperty(
|
format: EnumProperty(
|
||||||
items=[
|
items=[
|
||||||
("csv", "csv", ""),
|
("csv", "csv", ""),
|
||||||
@@ -51,4 +51,5 @@ class BIMFMProperties(PropertyGroup):
|
|||||||
],
|
],
|
||||||
name="Format",
|
name="Format",
|
||||||
default="ods",
|
default="ods",
|
||||||
|
options=set(),
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user